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
// create a data table
7
var dataTable = anychart.data.table();
8
dataTable.addData([
9
['2015-12-24T12:00:00', 511.53, 514.98, 505.79, 506.40],
10
['2015-12-25T12:00:00', 512.53, 514.88, 505.69, 507.34],
11
['2015-12-26T12:00:00', 511.83, 514.98, 505.59, 506.23],
12
['2015-12-27T12:00:00', 511.22, 515.30, 505.49, 506.47],
13
['2015-12-28T12:00:00', 510.35, 515.72, 505.23, 505.80],
14
['2015-12-29T12:00:00', 510.53, 515.86, 505.38, 508.25],
15
['2015-12-30T12:00:00', 511.43, 515.98, 505.66, 507.45],
16
['2015-12-31T12:00:00', 511.50, 515.33, 505.99, 507.98],
17
['2016-01-01T12:00:00', 511.32, 514.29, 505.99, 506.37],
18
['2016-01-02T12:00:00', 511.70, 514.87, 506.18, 506.75],
19
['2016-01-03T12:00:00', 512.30, 514.78, 505.87, 508.67],
20
['2016-01-04T12:00:00', 512.50, 514.77, 505.83, 508.35],
21
['2016-01-05T12:00:00', 511.53, 516.18, 505.91, 509.42],
22
['2016-01-06T12:00:00', 511.13, 516.01, 506.00, 509.26],
23
['2016-01-07T12:00:00', 510.93, 516.07, 506.00, 510.99],
24
['2016-01-08T12:00:00', 510.88, 515.93, 505.22, 509.95],
25
['2016-01-09T12:00:00', 509.12, 515.97, 505.15, 510.12],
26
['2016-01-10T12:00:00', 508.53, 516.13, 505.66, 510.42],
27
['2016-01-11T12:00:00', 508.90, 516.24, 505.73, 510.40]
28
]);
29
30
// map the data
31
mapping = dataTable.mapAs();
32
mapping.addField('open', 1, 'first');
33
mapping.addField('high', 2, 'max');
34
mapping.addField('low', 3, 'min');
35
mapping.addField('close', 4, 'last');
36
mapping.addField('value', 4, 'last');
37
38
// create a stock chart
39
chart = anychart.stock();
40
41
// create an OHLC series
42
var ohlcSeries = chart.plot(0).ohlc(mapping);
43
ohlcSeries.name("Series 1")
44
45
// create a line series
46
var lineSeries = chart.plot(1).line(mapping);
47
lineSeries.name("Series 2")
48
49
// an auxiliary variable for working with annotations
50
var controller = chart.annotations();
51
52
// allow drawing on the first plot
53
chart.plot(0).annotations().enabled(true);
54
55
// forbid drawing on the second plot
56
chart.plot(1).annotations().enabled(false);
57
58
// set the chart position and title
59
chart.top(15);
60
chart.title("Forbidding Drawing");
61
62
// set the chart container and initiate drawing the chart
63
chart.container(stage);
64
chart.draw();
65
66
// create a label for the Andrews' Pitchfork annotation
67
createLabel("Andrews' Pitchfork", 10, function() {
68
// start drawing the annotation
69
controller.startDrawing("andrewsPitchfork");
70
});
71
72
// create a label for the Triangle annotation
73
createLabel("Triangle", 150, function() {
74
// start drawing the annotation
75
controller.startDrawing("triangle");
76
});
77
78
// create a label for the Ellipse annotation
79
createLabel("Ellipse", 219, function() {
80
// start drawing the annotation
81
controller.startDrawing("ellipse");
82
});
83
84
// create a label for removing annotations
85
createLabel("Remove All", 300, function() {
86
// remove all annotations
87
controller.removeAllAnnotations();
88
});
89
});
90
91
// a helper function for creating buttons
92
function createLabel(text, offset, action){
93
var label = anychart.standalones.label();
94
label.background({fill: "#1976d2"});
95
label.text(text);
96
label.fontColor("#fff");
97
label.padding(5);
98
label.parentBounds(offset, 5, 130, 100);
99
label.listen("click", action);
100
label.container(stage);
101
label.draw();
102
label.listen("mouseOver", function(){
103
label.background().fill("#1976d2 0.5");
104
document.body.style.cursor = "pointer";
105
label.draw();
106
});
107
label.listen("mouseOut", function(){
108
label.background().fill("#1976d2");
109
document.body.style.cursor = "auto";
110
label.draw();
111
});
112
return label;
113
};