score:8

Accepted answer

Highstock's only type of xAxis is datetime, so using it with numbers is not an option. (Maybe if you make some tricky formatting actions and define a custom tooltip with the same formatting options it might be possible).

Leaves only Highcharts and there is an example called master-detail chart that could meet your requirements.

Hope that helps.

score:1

xAxis: {
    type: 'linear' // Other types are "logarithmic", "datetime" and "category"
}, 

score:17

Below X Axis formatter can be used with high Stock for displaying numbers in X-Axis:

xAxis: {labels: {   formatter: function () {return this.value;}} }

Related Query

More Query from same tag