fix(图表): 修复双轴图柱图没有点击事件问题

This commit is contained in:
ulleo 2024-04-15 17:13:41 +08:00
parent 0c7ad95c9e
commit 722e3be362

View File

@ -124,6 +124,7 @@ export class ColumnLineMix extends G2PlotChartView<DualAxesOptions, DualAxes> {
const newChart = new DualAxes(container, options)
newChart.on('point:click', action)
newChart.on('interval:click', action)
return newChart
}