antvis/G2




The issue has been closed
折线图点击事件会返回所有数据 #5068
KuduroJS posted onGitHub
预期是返回点击项数据
另,面积图也有这个问题
复现代码:
/**
* A recreation of this demo: https://observablehq.com/@d3/line-chart
*/
import { Chart } from '@antv/g2';
const chart = new Chart({
container: 'container',
theme: 'classic',
autoFit: true,
});
chart
.line()
.data({
type: 'fetch',
value:
'https://gw.alipayobjects.com/os/bmw-prod/551d80c6-a6be-4f3c-a82a-abd739e12977.csv',
})
.encode('x', 'date')
.encode('y', 'close');
chart.on('element:click', ev => {
console.log('click...', ev)
})
chart.render();