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
// create a stage
4
stage = anychart.graphics.create("container");
5
6
// the data used in this sample can be obtained from the CDN
7
// https://cdn.anychart.com/csv-data/csco-daily.js
8
// create a data table using this data
9
var dataTable = anychart.data.table();
10
dataTable.addData(get_csco_daily_short_data());
11
12
// map the data
13
var mapping = dataTable.mapAs({"value": 4});
14
15
// create a stock chart
16
chart = anychart.stock();
17
18
// create a plot on the chart
19
var plot = chart.plot(0);
20
21
// create a line series
22
var lineSeries = plot.line(mapping);
23
lineSeries.name("CSCO");
24
25
// an auxiliary variable for working with annotations
26
var controller = plot.annotations();
27
28
// set the chart position and title
29
chart.top(15);
30
chart.title("Handling Events");
31
32
// set the chart container and initiate drawing the chart
33
chart.container(stage);
34
chart.draw();
35
36
// create a label for the Andrews' Pitchfork annotation
37
createLabel("Andrews' Pitchfork", 10, function() {
38
// start drawing the annotation
39
controller.startDrawing("andrewsPitchfork");
40
});
41
42
// create a label for the Triangle annotation
43
createLabel("Triangle", 150, function() {
44
// start drawing the annotation
45
controller.startDrawing("triangle");
46
});
47
48
// create a label for the Ellipse annotation
49
createLabel("Ellipse", 219, function() {
50
// start drawing the annotation
51
controller.startDrawing("ellipse");
52
});
53
54
// create a label for removing annotations
55
createLabel("Remove All", 300, function() {
56
// remove all annotations
57
controller.removeAllAnnotations();
58
// change the chart title
59
chart.title("Handling Events");
60
});
61
62
// create an event listener for selection
63
chart.listen("annotationSelect", function(e){
64
var selectedAnnotation = e.annotation;
65
// change the annotation stroke on selection
66
selectedAnnotation.selectStroke("#FF0000", 3, "5 2", "round");
67
// change the chart title on selection
68
chart.title("The " + selectedAnnotation.getType() + " annotation is selected.");
69
});
70
71
});
72
73
// a helper function for creating buttons
74
function createLabel(text, offset, action){
75
var label = anychart.standalones.label();
76
label.background({fill: "#1976d2"});
77
label.text(text);
78
label.fontColor("#fff");
79
label.padding(5);
80
label.parentBounds(offset, 5, 130, 100);
81
label.listen("click", action);
82
label.container(stage);
83
label.draw();
84
label.listen("mouseOver", function(){
85
label.background().fill("#1976d2 0.5");
86
document.body.style.cursor = "pointer";
87
label.draw();
88
});
89
label.listen("mouseOut", function(){
90
label.background().fill("#1976d2");
91
document.body.style.cursor = "auto";
92
label.draw();
93
});
94
return label;
95
};