I want to show all labels on highchart you can see http://jsfiddle.net/valrecx/fj6d2/3021 that the months are not complete, the code only shows jan, aprl, july etc I want to show all the labels including those months that are in the middle of the visible months, jan, february, march, april etc.
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type:'bar'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec','Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
min: 6
},
plotOptions: {
series: {
pointPadding: 0.4,groupPadding:0.1 ,pointWidth:5
}
},
legend: {
verticalAlign: 'top',
y: 100,
align: 'right'
},
scrollbar: {
enabled: true
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4,9.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}
]
});
How can I achieve that on highchart?