please take a look at this graph which displays as expected (i.e. ticks are at the specified positions):
xAxis: {
tickPositions: [1, 3, 4, 5, 10],
gridLineWidth: '1',
lineWidth: 1
//tickPosition: 'outside'
},
Now, if I specify categories, the tick positions (and grid) change, they are no longer on the label, see:
xAxis: {
tickPositions: [1, 3, 4, 5, 10],
categories: ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve'],
gridLineWidth: '1',
lineWidth: 1
//tickPosition: 'outside'
},
Is this a bug or am I missing something?
Cheers,
Tony.