Apexcharts-甜甜圈 - 将甜甜圈上的百分比标签更改为传奇

发布于 2025-01-22 17:35:01 字数 332 浏览 0 评论 0原文

我希望创建一个甜甜圈图表,其中我想强调每个元素的标签/传说,而不是显示总数的馅饼。

我已经尝试使用格式化函数,例如

  formatter: function(value, { seriesIndex, dataPointIndex, w }) {
    return w.config.series[seriesIndex].name + ":  " + value.toFixed(0)+ " %"
  },

,这会在每个甜甜圈细分市场上产生标签 - 未定义:26%

会喜欢关于如何执行此操作的任何想法。

非常感谢,

奈杰尔

I am looking to create a donut chart where instead of the pieces of the pie showing the percentage of the total, i'd like it to highlight the label/legend for each element?

I have tried using the formatter function e.g.

  formatter: function(value, { seriesIndex, dataPointIndex, w }) {
    return w.config.series[seriesIndex].name + ":  " + value.toFixed(0)+ " %"
  },

But this generates labels on each of the donut segments - undefined: 26 %

Would appreciate any thoughts on how to do this.

Many thanks,

Nigel

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩人痒 2025-01-29 17:35:01

对于甜甜圈图,标签与数据值分开存储(即series)。

创建图表时,您将传递以下值:

options = {
    series: [44, 55, 13, 33],
    labels: ['Apple', 'Mango', 'Orange', 'Watermelon']
}

或者如果使用react/vue :(

series: [44, 55, 13, 33],
chartOptions: {
    labels: ['Apple', 'Mango', 'Orange', 'Watermelon']
}

两个示例来自文档,经过轻微的修改。)

这意味着要访问格式化函数中的标签,我们需要参考labels而不是seripers。我们还可以删除.name

  formatter: function(value, { seriesIndex, dataPointIndex, w }) {
    return w.config.labels[seriesIndex] + ":  " + value.toFixed(0)+ " %"
  },

For donut charts, the labels are stored separately from the data value (i.e. series).

When creating the chart you'll pass these values:

options = {
    series: [44, 55, 13, 33],
    labels: ['Apple', 'Mango', 'Orange', 'Watermelon']
}

Or if using React/Vue:

series: [44, 55, 13, 33],
chartOptions: {
    labels: ['Apple', 'Mango', 'Orange', 'Watermelon']
}

(Both examples from the documentation, with slight modification.)

This means that to access the labels in the formatter function, we need to reference labels instead of series. We can also drop the .name.

  formatter: function(value, { seriesIndex, dataPointIndex, w }) {
    return w.config.labels[seriesIndex] + ":  " + value.toFixed(0)+ " %"
  },
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文