I'm using Highcharts and need to chart data with quarterly frequency using a format like 'yyyy Q#'.
I found how to format the periods in the tooltip (using a JS formatter function) and would now like to use the same format in the rangeSelector 'From' and 'To' input fields.
From the documentation I see I could use 'inputDataFormat', but that has the standard PHP strftime formatter function, which does not cover my requirement.
Any idea appreciated!
Massimo
It is possible to extend Highcharts format. You need to define
Highcharts.dateFormats
object:And then you can use 'Q' to format timestamp.
example: http://jsfiddle.net/twcu0djj/