Highcharts Annotations Demo
author(s):
Sebastian Domas
by Vladyslav Kampov
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', {
title: {
text: 'Highcharts Annotations'
},
subtitle: {
text: 'Annotation label position options'
},
series: [{
keys: ['x', 'y', 'id'],
data: [[25, 29.9, '0']]
}],
tooltip: {
enabled: false
},
annotations: [{
labels: [{
//verticalAlign: 'top', top by default
align: 'center',
point: '0'
}, {
//verticalAlign: 'top', top by default
align: 'right',
point: '1'
}, {
//align: 'center', center by default
verticalAlign: 'top',
point: '2'
}, {
x: 50,
point: '3'
}, {
distance: 20,
point: '4'
}],
labelOptions: {
/* point: '1', */
y: -15,
allowOverlap: true
}
}]
});