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 stage = anychart.graphics.create('container');
3
4
var chart1 = anychart.line([
5
{x: 0, value: 6},
6
{x: 1, value: 10},
7
{x: 2, value: 18},
8
{x: 3, value: 11},
9
{x: 4, value: 9}
10
]);
11
chart1.yScale().minimum(0);
12
chart1.bounds(0, 20, '50%', '100%');
13
14
var controller = chart1.annotations();
15
controller.line({
16
xAnchor: 1,
17
valueAnchor: 11,
18
secondXAnchor: 3,
19
secondValueAnchor: 12,
20
stroke: '2 #F44336'
21
});
22
23
chart1.container(stage);
24
chart1.draw();
25
26
var chart2 = anychart.column([
27
{x: 0, value: 6},
28
{x: 1, value: 10},
29
{x: 2, value: 18},
30
{x: 3, value: 11},
31
{x: 4, value: 9}
32
]);
33
chart2.yScale().minimum(0);
34
chart2.bounds('50%', 20, '50%', '100%');
35
36
// Returns plot annotation in XML node.
37
var xml = controller.toXml(true);
38
39
var annotation = chart2.annotations();
40
41
// Read config from XML node.
42
annotation.fromXml(xml);
43
44
chart2.container(stage);
45
chart2.draw();
46
47
var customTitle = anychart.standalones.title();
48
customTitle.text('Create and read config from XML node');
49
customTitle.container(stage);
50
customTitle.draw();
51
});