Merge pull request #9103 from ulleo/dev-v2

fix(图表): 修复双轴图柱图没有点击事件问题
This commit is contained in:
ulleo 2024-04-15 17:14:35 +08:00 committed by GitHub
commit 864303329a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}