please take a look at this:
http://jsfiddle.net/2rNzr/
var chart = new Highcharts.Chart({
chart: {
renderTo: \'container\'
},
x
You will need to change your missing values to null, and specify that you want a line/spline through the existing values.
var chart = new Highcharts.Chart({
chart: {
defaultSeriesType: 'line',
renderTo: 'container'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [29.9, null, 106.4, 129.2, 144.0, 176.0, null, 148.5, 216.4, 194.1, 95.6, 54.4],
}]
});
see http://jsfiddle.net/xynZT/ with defaultSeriesType: 'spline' as an example.