2014-05-23 38 views

回答

0

您只爲兩根針提供series.data。也爲第三個添加數據。爲了使起始點相同,只需將yAxis值更改爲0或任何適合您的值。

series: [{ 
     data: [{y:-6, color: 'red'}], 
     yAxis: 0, 
       dial: { 
        backgroundColor : 'red' 
       } 

    },{ 
     data: [{y:-4, color: 'yellow'}], 
     yAxis: 0, 
       dial: { 
        backgroundColor : 'yellow' 
       } 

    },{ 
     data: [{y:-2}], 
     yAxis: 0, 
       dial: { 
        backgroundColor : 'green' 
       } 

}] 

}); 
+0

我發佈了錯誤小提琴的鏈接。請檢查一下 - [標準](http://jsfiddle.net/xfV5k/44/) – user3610827

0

的問題是,你的最後一針數據超出範圍。嘗試改變爲250,你會注意到針存在。