HTMLcopy
1
<button onclick="select()">Select annotation</button>
2
<button onclick="unselect()">Unselect annotation</button>
3
<div id="container"></div>
CSScopy
9
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
7
button {
8
margin: 10px 0 0 10px;
9
}
JavaScriptcopy
x
1
var chart;
2
var controller;
3
var annotation;
4
anychart.onDocumentReady(function () {
5
chart = anychart.line([
6
{x: 0, value: 6},
7
{x: 1, value: 10},
8
{x: 2, value: 18},
9
{x: 3, value: 11},
10
{x: 4, value: 9}
11
]);
12
chart.yScale().minimum(0);
13
chart.xScale('linear');
14
15
chart.annotations([{
16
type: 'ellipse',
17
xAnchor: 1.9,
18
valueAnchor: 17,
19
secondXAnchor: 2.1,
20
secondValueAnchor: 19,
21
fill: '#4CAF50 0.5',
22
stroke: '3 #FF9800'
23
}]);
24
25
controller = chart.annotations();
26
27
annotation = chart.annotations().getAnnotationAt(0);
28
29
chart.title('Select/unselect methods');
30
chart.width('100%').height('95%');
31
chart.container('container');
32
chart.draw();
33
});
34
35
function select() {
36
37
// Set selection mode.
38
controller.select(annotation);
39
}
40
41
function unselect() {
42
43
// Disable selection mode.
44
controller.unselect(annotation);
45
}