HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.line([
3
{x: 0, value: 6},
4
{x: 1, value: 10},
5
{x: 2, value: 18},
6
{x: 3, value: 11},
7
{x: 4, value: 9}
8
]);
9
chart.yScale().minimum(0);
10
11
var controller = chart.annotations();
12
13
// Create horizontal line annotation.
14
controller.horizontalLine({
15
valueAnchor: 10,
16
stroke: '2 #F44336'
17
});
18
19
chart.title('Create horizontal line annotation');
20
chart.container('container');
21
chart.draw();
22
});