ChartJS:隐藏数据项单击传说后,如何强制重新绘制?
我有一个 ChartJS 饼图,我自己在其中绘制标签。 这很好用——直到传说发挥作用。
const options = {
layout: {
...
},
plugins: {
chartLineLabelPlugin: {
...
},
legend: {
display: true
},
}
};
使用图例,用户可以单击标签,从而隐藏该单个数据项。 饼图被重绘,但其他插件的 afterDraw
函数从未被调用。
- 如何强制以某种方式重绘图表,即点击图例项调用
afterDraw
? - 如何识别隐藏的数据项?
I've a ChartJS pie chart, where I draw the labels myself.
This works fine - until the legend comes into play.
const options = {
layout: {
...
},
plugins: {
chartLineLabelPlugin: {
...
},
legend: {
display: true
},
}
};
Using the legend, the user can click on labels and thus hide this single data item.
The pie chart is redrawn but the afterDraw
function of other plugins is never called.
- How can I force to redraw the chart in a way, that the
afterDraw
is called clicking on legend items? - How can I identify the hidden data items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论