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

text标记无法绑定事件 #5279

Closed
xiacandongxue opened this issue Jul 6, 2023 · 0 comments · Fixed by #5290
Closed

text标记无法绑定事件 #5279

xiacandongxue opened this issue Jul 6, 2023 · 0 comments · Fixed by #5290

Comments

@xiacandongxue
Copy link

问题描述:
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();
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

Successfully merging a pull request may close this issue.

1 participant