請看看這個:http://jsfiddle.net/HA5xE/Highcharts堆積條形圖隱藏數據標籤不重疊
所以,我已經堆積柱形圖,我想隱藏數據標籤時,他們沒有在該地區適合。對於類別8中的示例,根本不具有數據標籤「4」。
我看到:http://api.highcharts.com/highcharts#plotOptions.bar.dataLabels.crop,據我所知應該自動完成,但由於某種原因不起作用。
我試圖計算系列是以像素爲單位的寬度(或高度)來控制顯示/隱藏格式化程序功能,但我無法獲得欄系列寬度。
formatter: function() {
if(this.percentage.toFixed(0)>0)
return this.percentage.toFixed(0);
else
return '';
}
感謝您的幫助提前。
FIXED:
formatter: function() {
if(this.point.yBottom - this.point.plotY>13)
return this.percentage.toFixed(0);
else
return '';
}
作物的選擇是不是你在想什麼... – c0deNinja