Is there a way to have \'datetime\' for the xAxis type on the main series, but then when a series is clicked on, have the drilldown use categories for that time?
I
You need to add this to your xAxis:
xAxis
labels: { formatter: function() { return Highcharts.dateFormat('%a %d %b', this.value); } },
Check out the fiddle.