Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

折线图监听事件不灵敏 #6151

Open
Calmio-Y opened this issue Mar 26, 2024 · 0 comments
Open

折线图监听事件不灵敏 #6151

Calmio-Y opened this issue Mar 26, 2024 · 0 comments

Comments

@Calmio-Y
Copy link

问题描述

配置click后,点击事件不能实时触发
import { Chart } from '@antv/g2';

const data = [
{ year: '1991', value: 3 },
{ year: '1992', value: 4 },
{ year: '1993', value: 3.5 },
{ year: '1994', value: 5 },
{ year: '1995', value: 4.9 },
{ year: '1996', value: 6 },
{ year: '1997', value: 6 },
{ year: '1998', value: 6 },
{ year: '1999', value: 13 },
];

const chart = new Chart({
container: 'container',
autoFit: true,
});

chart
.data(data)
.encode('x', 'year')
.encode('y', 'value')
.scale('x', {
range: [0, 1],
})
.scale('y', {
domainMin: 0,
nice: true,
});

chart.line().label({
text: 'value',
style: {
dx: -10,
dy: -12,
},
});

chart.point().style('fill', 'white').tooltip(false);
chart.on('element:click', (e) => {
console.log('基础折线图',e.data.data); // 展示点击的数据
});
chart.render();

重现链接

No response

重现步骤

No response

预期行为

我期望看到点击折线能实时触发click事件

平台

  • 操作系统: [macOS, Windows, Linux, React Native ...]
  • 网页浏览器: [Google Chrome, Safari, Firefox]

屏幕截图或视频(可选)

No response

补充说明(可选)

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant