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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -