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

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -