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
3
// the data used in this sample can be obtained from the CDN
4
// https://cdn.anychart.com/csv-data/csco-daily.js
5
// create a data table using this data
6
var dataTable = anychart.data.table();
7
dataTable.addData(get_csco_daily_short_data());
8
9
// map the data
10
var mapping = dataTable.mapAs({'value': 4});
11
12
// create a stock chart
13
var chart = anychart.stock();
14
15
// create a plot on the chart
16
var plot = chart.plot(0);
17
18
// create a line series
19
var lineSeries = plot.line(mapping);
20
lineSeries.name('CSCO');
21
22
// access the annotations() object of the plot to work with annotations
23
var controller = plot.annotations();
24
25
// create the first Horizontal Line annotation and configure its visual settings
26
horizontalLine1 = controller.horizontalLine({
27
valueAnchor: 33.13,
28
hoverStroke: "2 #FF0000",
29
selectStroke: "5 #FF0000"
30
});
31
32
// create the second Horizontal Line annotation
33
horizontalLine2 = controller.horizontalLine();
34
35
// set the position of the second annotation
36
horizontalLine2.valueAnchor(14.18);
37
38
// configure the visual settings of the second annotation
39
horizontalLine2.stroke("#2196F3", 3, "10 2");
40
41
// set the chart title
42
chart.title("Horizontal Line: Visual Settings");
43
44
// set the container id
45
chart.container("container");
46
47
// initiate drawing the chart
48
chart.draw();
49
});