antvis/G2

The issue has been closed
自定义图例 custom: true,自定义图例点击事件隐藏 #3583
bin-sun posted onGitHub
chart.legend({
custom: true,
items: [
{
name: '城市 1',
id: 'city-1',
marker: { symbol: 'triangle', style: { r: 4, fill: 'red' } },
},
{
name: '城市 2',
id: 'city-2',
},
],
});
chart.on('legend-item:click', (ev) => {
const { type, view, gEvent, data, x, y, clientX, clientY, target} = ev;
console.log('data', data); // undefind
});
自定义图例事件data获取不到,如何通过自定义事件隐藏相对于图形呢?