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 dataTable = anychart.data.table();
3
dataTable.addData(get_dji_daily_short_data());
4
5
var mapping = dataTable.mapAs({value: 1});
6
7
chart = anychart.stock();
8
9
var plot1 = chart.plot();
10
plot1.line(mapping);
11
12
var controller = plot1.annotations();
13
controller.line({
14
xAnchor: 1107129600000,
15
valueAnchor: 9000,
16
secondXAnchor: 1131408000000,
17
secondValueAnchor: 12000,
18
stroke: '2 #F44336'
19
});
20
21
var plot2 = chart.plot(1);
22
plot2.column(mapping);
23
24
// Returns plot annotation in JSON object.
25
var json = controller.toJson();
26
27
var annotation = plot2.annotations();
28
29
// Read config from JSON object.
30
annotation.fromJson(json);
31
32
chart.title('Create and read config from JSON object');
33
chart.container('container');
34
chart.draw();
35
});