我正在尝试使用highcharts将其他数据添加到我的饼图中.试着解释一下:我有一个浏览器饼图:
Firefox - 10%
铬 - 12%
资源管理器 - 65%
歌剧 - 13%
我想添加更多信息以显示在工具提示中:例如:
Firefox - 其中10%的女性用户:5%
Chrome - 其中12%为女性用户:10%
资源管理器 - 其中65%为女性用户:30%
歌剧院 - 其中女性用户占 13%:5%
我推出的值是发明的,我想了解如何自定义工具提示并为系列添加更多数据.
我的JsFiddle代码
这是我的Pie的JS代码:
这是一张了解我想做什么的图片:
谢谢
您可以将自定义数据串联,然后在工具提示中使用
data: [{ name: "Firefox", y: 10, custom:"5% " }, { name: "Chrome", y: 12, custom:"10% " }, { name: "Explorer", y: 65, custom:"15%" }, { name: "Opera", y: 13, custom:"25% " }]
在工具提示中使用
tooltip: { pointFormat: '{series.name}: {point.percentage:.1f}%
of which woman users {point.custom}' }
在这里看到更新的小提琴