I'm trying to render a heatmap graphic but not all of yAxis are displayed in the chart, even putting turboThreshold to 0
My jsfiddle example:
http://jsfiddle.net/camilo17/zk70smv8/
My series array
series: [{
name: 'Trafico por horas',
borderWidth: 1,
data: [ ... ],
turboThreshold: 0,
}]
At the end of categories there is a "68" I don't know what does it means.
The simplest solution - set step label's property to 1.
labels: {
step: 1
}