0
我在我的頁面上有一張Highcharts餅圖,工作正常。
我想要做的是刪除在餅圖的鼠標懸停上顯示的值,而是用dataLabels(?)靜態顯示值。Highcharts - 如何更改顯示數據並刪除鼠標懸停?
我不擅長JS,也不知道從哪裏開始。
請參閱下面的圖解說明。
$(function() {
$('#total').highcharts({
credits: {
enabled: false
},
data: {
table: document.getElementById('datatable_total'),
switchRowsAndColumns: true,
endRow: 1
},
chart: {
type: 'pie'
},
title: {
text: ''
},
yAxis: {
allowDecimals: false,
title: {
text: 'Units'
}
},
tooltip: {
formatter: function() {
return '<b>' + this.series.name + '</b><br/>' +
this.point.y + ' ' + this.point.name.toLowerCase();
}
},
navigation: {
buttonOptions: {
verticalAlign: 'bottom',
y: -20
}
}
});
});
「我不擅於JS,而且不知道從哪裏開始」 - 問題應該根據此條款被關閉的SO – zerohero