javascript - highstock x-axis is always time -


I chose highstock instead of highcharts because I'm scrolling Required functionality and I felt that highstock only supports the time labels, but I also need to display the string.

Is there any way to display string value in X axis ticks?

Use the formatter for labels just on xx that you want. See this jsFiddle

  xAxis: {label: {formatter: function () {return 'my string'; }}},    

Comments

Popular posts from this blog

How can I add a seperate action listener to all 14 of my buttons at once that can determine player turn?(java) -

php - Sorting an multidimension array using usort fails -

Simple file compression in C -