score:3

Accepted answer

if you are willing to switch to highstock you can use their ordinal feature:

in an ordinal axis, the points are equally spaced in the chart regardless of the actual time or x distance between them.

you'd have to use the highstock script instead:

<script src="http://code.highcharts.com/stock/highstock.js"></script>

then create your standard chart (highcharts style) with an ordinal x-axis:

$('#container').highcharts('chart', {
    xaxis: {
        ordinal: true,
        // ...
    },
    // ...
});

see this jsfiddle demonstration of your chart with these modifications.


Related Query

More Query from same tag