如何在谷歌可视化中显示所有图例:饼图

发布于 2024-11-30 10:17:44 字数 70 浏览 0 评论 0原文

我正在使用谷歌可视化饼图来显示我的投票详细信息。但该图表没有显示零值和图例。 如何在 Google 可视化中显示所有图例:饼图

i am using Google visualization pie chart for showing my vote details.But the chart didn't showing the zero values and legends.
How to show all legends in Google Visualization: Pie Chart

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

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

发布评论

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

评论(2

可是我不能没有你 2024-12-07 10:17:44

您只需将 sliceVisibilityThreshold 选项设置为 0 即可。这将迫使所有传说都显现出来。

var options = {
    sliceVisibilityThreshold: 0
};
var data = /* ... */;

var chart = new google.visualization.PieChart(/* ... */);
chart.draw(data, options);

You can simply set the sliceVisibilityThreshold option to 0. This will force all the legends to show.

var options = {
    sliceVisibilityThreshold: 0
};
var data = /* ... */;

var chart = new google.visualization.PieChart(/* ... */);
chart.draw(data, options);
梦开始←不甜 2024-12-07 10:17:44

我所做的就是为每个值添加一个小值 (0.005)。当设置 sliceVisibilityThreshold: 1/25000, (1/25000 = 0.004) 时,将显示切片/图例,但由于四舍五入,该值仍为 0%。

What I did was to add a small value (0.005) to each of the values. When setting the sliceVisibilityThreshold: 1/25000, (1/25000 = 0.004) the slice/legend will be shown but the value will still be 0% due to rounding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文