antvis/G2
The issue has been closed
text标记无法绑定事件 #5279
xiacandongxue posted onGitHub
问题描述: text标记无法绑定事件(例如点击事件)
期望结果: text标记可以实现事件绑定
如何重现: 官方代码修改
const chart = new Chart({
container: 'container',
theme: 'classic',
autoFit: true,
});
chart.text().style({
x: 290, // 像素坐标
y: 200, // 像素坐标
text: 'hello',
textAlign: 'center',
fontSize: 60,
textBaseline: 'middle',
});
chart.on(`text:click`, (ev) => {
alert(ev);
});
chart.render();