我有以下饼图,在浅绿色区域有一个明细。因此,如果您单击该绿色区域,则会打开另一个饼图。在第一个饼图的每个部分的工具提示中,有一个文本显示品牌,这个文本也出现在按钮中,一旦显示钻取饼图,它就会返回(它表示返回品牌)。换句话说,“后退”按钮可帮助查看者返回第一个饼图。 我的问题是如何摆脱文本品牌。我根本不需要那些文字。我只想让按钮说回来,文本Brands没有出现在工具提示中。谢谢你的帮助。
Highcharts.chart('recoveryGraf', {
chart: {
type: 'pie'
},
title: {
text: ''
},
plotOptions: {
series: {
dataLabels: {
enabled: true,
format: '{point.name}: {point.y:.1f}%'
}
}
},
tooltip: {
headerFormat: '<span style="font-size:11px">{series.name}</span><br>',
pointFormat: '<span style="color:{point.color}">{point.name}</span>: <b>{point.y:.2f}%</b> of total<br/>'
},
series: [{
name: 'Brands',
colorByPoint: true,
colors: ['#005eb8','#56b6cc','#8bc540'],
data: [{
name: 'Potential for further recovery',
y: 6,
drilldown: null
}, {
name: 'Non-recoverable<br>(e.g. tissue,wallpaper,etc)',
y: 22,
drilldown: null
}, {
name: 'Recycled',
y: 72,
drilldown: 'Recycleds'
}]
}],
drilldown: {
series: [{
name: 'Recycleds',
id: 'Recycleds',
colors: ['#57a133','#8bc540'],
data: [
['Exported', 16],
['Used Europe', 84]
]
}]
}
});
&#13;
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.js"></script>
<div id="recoveryGraf"></div>
&#13;
答案 0 :(得分:1)
检查XMLAGG并在按钮
中设置所需的消息
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.js"></script>
<div id="recoveryGraf"></div>
{{1}}