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("Canceling Drawing");
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.cancelDrawing();
40
controller.startDrawing("andrewsPitchfork");
41
});
42
43
// create a label for the Triangle annotation
44
createLabel("Triangle", 150, function() {
45
// start drawing the annotation
46
controller.cancelDrawing();
47
controller.startDrawing("triangle");
48
});
49
50
// create a label for the Ellipse annotation
51
createLabel("Ellipse", 219, function() {
52
// start drawing the annotation
53
controller.cancelDrawing();
54
controller.startDrawing("ellipse");
55
});
56
57
// create a label for removing annotations
58
createLabel("Remove All", 300, function() {
59
// remove all annotations
60
controller.removeAllAnnotations();
61
});
62
});
63
64
// a helper function for creating buttons
65
function createLabel(text, offset, action){
66
var label = anychart.standalones.label();
67
label.background({fill: "#1976d2"});
68
label.text(text);
69
label.fontColor("#fff");
70
label.padding(5);
71
label.parentBounds(offset, 5, 130, 100);
72
label.listen("click", action);
73
label.container(stage);
74
label.draw();
75
label.listen("mouseOver", function(){
76
label.background().fill("#1976d2 0.5");
77
document.body.style.cursor = "pointer";
78
label.draw();
79
});
80
label.listen("mouseOut", function(){
81
label.background().fill("#1976d2");
82
document.body.style.cursor = "auto";
83
label.draw();
84
});
85
return label;
86
};