当tickmarkPlacement:' on'时删除多余的刻度。

时间:2014-06-19 09:46:06

标签: highcharts

我必须使用tickmarkPlacement: 'on'而不是between,但我不需要左右额外的刻度。我的图表应该看起来像一个正方形。这是预期的结果:

The wanted result

让我们看看我的小提琴:http://jsfiddle.net/gcLGS/

1 个答案:

答案 0 :(得分:1)

您可以使用tickPixelInterval参数和startOnTick / endOnTick为true。

http://jsfiddle.net/gcLGS/1/

xAxis: {
    tickLength: 0,
    gridLineWidth: 1,
    labels: {
        enabled: false
    },
    tickPixelInterval: 100,
    startOnTick: true,
    endOnTick:true,
    tickmarkPlacement: 'on',

},