0
我的圖表中有近10個系列。highcharts得到圖表的所有最小點
1)我怎樣才能找到所有系列的最低點?
2)如何將它設置爲我的圖表起始點,如紅線?
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,
}
}
看看這個問題:http://stackoverflow.com/questions/10222613/calculating-a-min-y-axis-value-in-highcharts。 – wergeld
所以系列應該以直線或點開始? –
感謝wergeld,我解決了這個問題。 – user3260401