Highcharts has an example of using irregular time intervals, I want to do the same on highstock, however there are no parameters for the xAxis type.
JSFiddle Code
My parameters
$(function() { $.getJSON('http://184.173.195.228/~ktwsn/temp2.php?action=get_sensor&sensor_serial%5B%5D=3B74F41400000069&sensor_serial%5B%5D=3BB2FA14000000E6&sensor_serial%5B%5D=3B91F11400000079&sensor_serial%5B%5D=3BC7F114000000E5&sensor_serial%5B%5D=3BC0F314000000E3&callback=?', {action: "get_sensor"}, function(data) { var seriesOptions = []; $.each(data, function(key, val) { seriesOptions.push({ name: val.name, data: val.samples, marker : { enabled : true, radius : 3 } }); });
source share