Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highcharts - Force Categories in x-axis to be shown, even without data

I'm wondering if there's a way to force Highcharts to show ALL of the categories passed into its x-axis without giving filler data to hack it into working. For example, http://jsfiddle.net/cbargren/Sdnqu/ has 3 extra x-axis categories specified (foo, bar, baz) without any actual data (the series won't necessarily have data for the respective categories), and they aren't showing up on the chart. Can this be done? Thanks!

like image 335
Chris Avatar asked May 30 '12 20:05

Chris


1 Answers

Set the max on the xAxis to the index of the last category you want to show. See this jsfiddle

xAxis: {
       categories: ['Apples', 'Bananas', 'Pears', 'Oranges', 'foo', 'bar', 'baz'],
       max:6
},
like image 87
Ryan Lynch Avatar answered Oct 22 '22 11:10

Ryan Lynch