-1
我有以下格式的數據["event",3],["status",998]
。我正在使用餅圖來顯示數據。在工具提示中,我得到了名稱和百分比,但我想讓我的工具提示喜歡[event:3]
。我怎樣才能做到這一點?在php的高級圖表中修改toolstip格式化程序
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.point.percentage
}
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [["event",2],["status",30]]
}]