Highcharts Annotations Demo

author(s): Sebastian Domas

by Kesav Telaprolu

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/annotations.js"></script>

<div id="container" style="height: 400px; margin-top: 1em"></div>

CSS

#container {
	max-width: 800px;
	margin: 0 auto;
}

JavaScript

Highcharts.chart('container', {
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
            'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    title: {
        text: 'Highcharts Annotations'
    },

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

    annotations: [{
        labels: [{
            point: '0',
            shape: 'connector',
            text: this.id,
            y:143
        }, {
            point: 'min',
            text: 'Min',
            backgroundColor: 'white'
        }]
    }]
});