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
var chart = anychart.stock();
8
9
var plot = chart.plot();
10
plot.line(mapping);
11
12
plot.annotations([{
13
enabled: true,
14
type: 'rectangle',
15
xAnchor: '2007-04-01',
16
valueAnchor: 14060,
17
secondXAnchor: '2008-03-02',
18
secondValueAnchor: 12522
19
}
20
]);
21
22
// Set event type to start the annotation change
23
chart.listen('annotationChangeStart', function (e) {
24
var annotation = e.annotation;
25
chart.title('The ' + annotation.getType() + ' annotation change has started. \n Position:\n' +
26
'xAnchor: ' + anychart.format.dateTime(new Date(e.annotation.xAnchor()), 'dd MMMM yyyy') + '\n' +
27
'valueAnchor: ' + e.annotation.valueAnchor().toFixed() + '\n' +
28
'secondXAnchor: ' + anychart.format.dateTime(new Date(e.annotation.secondXAnchor()), 'dd MMMM yyyy') + '\n' +
29
'secondValueAnchor: ' + e.annotation.secondValueAnchor().toFixed());
30
});
31
32
// Set event type to finish the annotation change
33
chart.listen('annotationChangeFinish', function (e) {
34
var annotation = e.annotation;
35
chart.title('The ' + annotation.getType() + ' annotation change has finished. \n Position:\n' +
36
'xAnchor: ' + anychart.format.dateTime(new Date(e.annotation.xAnchor()), 'dd MMMM yyyy') + '\n' +
37
'valueAnchor: ' + e.annotation.valueAnchor().toFixed() + '\n' +
38
'secondXAnchor: ' + anychart.format.dateTime(new Date(e.annotation.secondXAnchor()), 'dd MMMM yyyy') + '\n' +
39
'secondValueAnchor: ' + e.annotation.secondValueAnchor().toFixed());
40
});
41
42
chart.title('Drag annotation');
43
chart.container('container');
44
chart.draw();
45
});