2013-08-28 86 views
1

我是剛接觸highchart的人,我只是想讓一個基本的折線圖運行起來。當我設置xaxis標籤步驟時,我的標籤變得不對齊。我正在使用v3.0.5。 JSFiddle example任何人都知道爲什麼?我的xAxis標籤有哪些錯位?

enter image description here

$(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 
    }] 
}); 
+0

你確定這不是在您使用的版本中的錯誤?你使用什麼版本?你有沒有試過另一個? –

+0

sectionData.XAxisLabelSkip必須是一個數字 –

+0

我正在使用v3.0.5,我會嘗試不同的版本。 – NullReference

回答