2015-11-26 77 views

回答

1

使用格式化函數並檢查值是否爲非零:顯示它否則不顯示它。

dataLabels: { 
        enabled: true, 
        rotation: 0, 
        color: '#FFFFFF', 
        align: 'right', 
        // format: '{point.y}', //comment it 
        x:10, 
        y: -28, // 10 pixels down from the top 
        style: { 
         fontSize: '14px', 
         fontFamily: 'Verdana, sans-serif' 
        }, 
     formatter: function() { 
         if (this.y != 0) { 
          return this.y; 
         } else { 
          return null; 
         } 
        } 
    } 

    } 

See working fiddle here

+0

試過這一點。不起作用。請檢查https://jsfiddle.net/akasheg/73oq2nzc/1/ –

+0

只是評論格式:'{point.y}它的工作,請參閱小提琴https://jsfiddle.net/Nishith/73oq2nzc/2/ –

+0

同樣的事情在你的小提琴中,我評論了格式和它的工作https://jsfiddle.net/Nishith/73oq2nzc/3/ –

相關問題