I have a very simple example of using Highcharts that uses "datetime" on one axis and categories on another. It displays without glasses and does not display category labels at all. Now I'm wondering if you can use this combination of types. Here is the code:
var chart = new Highcharts.Chart({ chart: { renderTo: 'container' }, xAxis: { type: 'datetime' }, yAxis: { categories: ['p1', 'p2'] }, series: [{ type: 'scatter', data: [ { name: 'Deliv1', x: Date.UTC(2011,0,1), y: 'p1' }, { name: 'Deliv2', x: Date.UTC(2012,0,1), y: 'p2' } ] }] });
source share