2014-04-21 50 views
0

我的圖表中有近10個系列。highcharts得到圖表的所有最小點

1)我怎樣才能找到所有系列的最低點?

2)如何將它設置爲我的圖表起始點,如紅線?

Here is my fiddle

xAxis: {     
    gridLineWidth:'1', 
    gridLineDashStyle:'shortDot', 
    tickInterval:1 
}, 
yAxis: {     
    gridLineDashStyle:'shortDot',        
}, 
tooltip: { 
    shared: true, 
    crosshairs:[{ 
     width:1, 
     color: 'black' 
    }] 
}, 
credits: { 
    enabled: false 
}, 
plotOptions: { 
    area: { 
     fillOpacity: 0.3, 
     pointStart:1, 
    }     
} 
+0

看看這個問題:http://stackoverflow.com/questions/10222613/calculating-a-min-y-axis-value-in-highcharts。 – wergeld

+0

所以系列應該以直線或點開始? –

+0

感謝wergeld,我解決了這個問題。 – user3260401

回答

0

1)您可以在每個系列/和點使用循環並返回正確的值。