I use HighCharts, but I do not understand why it does not display a category in xAxis if yAxis has no data ...
I checked in the API documentation and showEmpty is true (default value) ...
How can I display all categories even though I have more categories than data?
My js:
userChart = new Highcharts.Chart({ chart : { renderTo: 'highcharts', type: 'line', width: 950 }, xAxis: { categories: ['08:00', '08:30', '09:00', '09:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30', '15:00', '15:30', '16:00', '16:30', '17:00', '17:30', '18:00'], }, yAxis: { min: 0, allowDecimals: false, }, series: [{ name: '1', data: data1, }], });
data1 contains only 16 inputs, so Highcharts displays 16 categories ...
How can i fix this?