Highcharts test tool

HTML

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

<div id="container"></div>

CSS

#container {
    min-width: 300px;
    max-width: 800px;
    height: 300px;
    margin: 1em auto;
}

JavaScript

Highcharts.wrap(Highcharts.Series.prototype, 'drawGraph', function (proceed) {
	proceed.call(this);
    this.graph.add(this.markerGroup);
});

$('#container').highcharts({

	chart: {
    	zoomType: 'x'
    },

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 
            'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
        lineWidth: 1,
        tickLength: 0,
        labels: {
            enabled: false
        },
        offset: 1
    },
    
    yAxis: {
        min: 0,
        gridLineWidth: 0
    },

    series: [{
        data: [0, 0, 0, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

});