0
我找不到Highcharts API http://api.highcharts.com/。我如何刪除這兩條線在圖表中。刪除圖中的線 - 高圖
http://www.likecomunicacao.com.br/clientes/playtv/grafico/grafico2.html
有誰知道?
我找不到Highcharts API http://api.highcharts.com/。我如何刪除這兩條線在圖表中。刪除圖中的線 - 高圖
http://www.likecomunicacao.com.br/clientes/playtv/grafico/grafico2.html
有誰知道?
您需要關閉Pie的dataLabels。它們默認打開。
plotOptions: {
pie: {
innerSize: '70%',
dataLabels: {
enabled: false
}
},
series: {
enableMouseTracking: false,
}
},