结合xAxis Highcharts

时间:2016-11-16 20:54:53

标签: javascript jquery highcharts

我有来自highcharts.js的图表我的问题是,例如......我有一个包含5个值(5个点)的折线图,我的图表显示xAxis就像这个from value 1 to value 2: 0, 0.25, 0.5, 0.75, 1,我是什么我想做的是删除0.25, 0.5, 0.75并仅保留0和1,然后保持1和2等...这样的事情:

enter image description here

我该怎么做?

这是CodePen demo

1 个答案:

答案 0 :(得分:1)

您可以使用tickInterval控制它:

    xAxis: {

        labels: {
            rotation: -33,
        },
      tickInterval:1
    },

http://codepen.io/bhlaird/pen/WoGmNd

http://api.highcharts.com/highcharts/xAxis.tickInterval