Show shortcut only every x number of steps in highcharts

I have this HighCharts chart that has over 50 values ​​on x-asis. Thus, many, and I would like to show only each x-number of steps. Any ideas how to do this?

+5
source share
2 answers

Change the next bit of code by adding minTickInterval

xAxis: {
    categories: myArray,
    minTickInterval: 5                        
},

Jsfiddle

+12
source

xAxis: {Categories: myArray, tickInterval: 5}

minTickInterval will prevent smaller units from showing if you increase too much

+1
source

All Articles