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("Removing Annotations");
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
});
59
60
// create a label for removing the last drawn annotation
61
createLabel("Remove the Last", 390, function() {
62
// get the number of annotations
63
var annotationsCount = controller.getAnnotationsCount();
64
// remove the last annotation
65
controller.removeAnnotationAt(annotationsCount - 1);
66
});
67
68
// create a label for removing a selected annotation
69
createLabel("Remove Selected", 520, function() {
70
// get the selected annotation
71
var selectedAnnotation = controller.getSelectedAnnotation();
72
// remove the annotation
73
controller.removeAnnotation(selectedAnnotation);
74
});
75
});
76
77
// a helper function for creating buttons
78
function createLabel(text, offset, action){
79
var label = anychart.standalones.label();
80
label.background({fill: "#1976d2"});
81
label.text(text);
82
label.fontColor("#fff");
83
label.padding(5);
84
label.parentBounds(offset, 5, 130, 100);
85
label.listen("click", action);
86
label.container(stage);
87
label.draw();
88
label.listen("mouseOver", function(){
89
label.background().fill("#1976d2 0.5");
90
document.body.style.cursor = "pointer";
91
label.draw();
92
});
93
label.listen("mouseOut", function(){
94
label.background().fill("#1976d2");
95
document.body.style.cursor = "auto";
96
label.draw();
97
});
98
return label;
99
};