1
我是剛接觸highchart的人,我只是想讓一個基本的折線圖運行起來。當我設置xaxis標籤步驟時,我的標籤變得不對齊。我正在使用v3.0.5。 JSFiddle example任何人都知道爲什麼?我的xAxis標籤有哪些錯位?
$(elementSelector).highcharts({
title:{
text:''
},
tooltip: {
enabled:false
},
chart: {
type: chartType
},
xAxis: {
title: {
text: sectionData.XAxisLabel
},
labels: {
step: sectionData.XAxisLabelSkip
},
categories: xpoints
},
yAxis: {
title: {
text: sectionData.YAxisLabel
},
min: 0,
},
plotOptions: {
line: {
dataLabels: {
enabled: true
}
}
},
series: [{
title:'',
data: ypoints,
showInLegend: false
}]
});
你確定這不是在您使用的版本中的錯誤?你使用什麼版本?你有沒有試過另一個? –
sectionData.XAxisLabelSkip必須是一個數字 –
我正在使用v3.0.5,我會嘗試不同的版本。 – NullReference