Is there a way to ensure equal distances between points when using the Datetime type for the xAxis?
I am looking to maintain consistent distances and eliminate the gap that appears on the chart between 3 and 6 January.
Highcharts.chart('container', {
xAxis: {
type: 'datetime',
ordinal: true
},
series: [{
data: [
[Date.UTC(2010, 0, 1), 29.9],
[Date.UTC(2010, 0, 2), 71.5],
[Date.UTC(2010, 0, 3), 106.4],
[Date.UTC(2010, 0, 6), 129.2],
[Date.UTC(2010, 0, 7), 144.0],
[Date.UTC(2010, 0, 8), 176.0]
]
}]
});