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

legend:filter 监听有问题 #5953

Closed
YY88Xu opened this issue Dec 19, 2023 · 1 comment
Closed

legend:filter 监听有问题 #5953

YY88Xu opened this issue Dec 19, 2023 · 1 comment

Comments

@YY88Xu
Copy link

YY88Xu commented Dec 19, 2023

问题描述

第一次点击 other,触发 legend:filter 事件,再次点击 other, 不触发,也就是连续两次点击的是相同的 图例项,不触发 legend:filter 事件
image

重现链接

No response

重现步骤

`import { Chart } from '@antv/g2';

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

chart
.interval()
.data([
{ genre: 'Sports', sold: 0 },
{ genre: 'Strategy', sold: 115 },
{ genre: 'Action', sold: 120 },
{ genre: 'Shooter', sold: 350 },
{ genre: 'Other', sold: 150 },
])
.encode('x', 'genre')
.encode('y', 'sold')
.encode('color', 'genre')
.style('minHeight', 50);

chart.on('legend:filter', e=>{
const {data} = e
console.log('filter', data)
})

chart.render();`

预期行为

No response

平台

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

屏幕截图或视频(可选)

No response

补充说明(可选)

No response

@YY88Xu
Copy link
Author

YY88Xu commented Dec 19, 2023

chart.on('legend:reset', (e) => {
const { nativeEvent } = e;
if (!nativeEvent) return;
console.log('end');
});

@YY88Xu YY88Xu closed this as completed Dec 19, 2023
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