ChartJS:隐藏数据项单击传说后,如何强制重新绘制?

发布于 2025-01-17 14:07:54 字数 556 浏览 2 评论 0原文

我有一个 ChartJS 饼图,我自己在其中绘制标签。 这很好用——直到传说发挥作用。

const options = {      
   layout: {
      ...
   },
   plugins: {
      chartLineLabelPlugin: {
         ...
      },
      legend: {
         display: true
      },
   }
};

输入图片此处描述

使用图例,用户可以单击标签,从而隐藏该单个数据项。 饼图被重绘,但其他插件的 afterDraw 函数从未被调用。

  1. 如何强制以某种方式重绘图表,即点击图例项调用 afterDraw
  2. 如何识别隐藏的数据项?

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
      },
   }
};

enter image description here

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.

  1. How can I force to redraw the chart in a way, that the afterDraw is called clicking on legend items?
  2. How can I identify the hidden data items?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文