HTMLcopy
1
<div id="container">
2
<div class="container-title">
3
<p>
4
See also
5
<a href="https://www.anychart.com/products/anystock/drawing_tools/" target="_blank">Drawing Tools and
6
Annotations Demo</a>
7
</p>
8
</div>
9
</div>
CSScopy
8
1
html,
2
body,
3
#container {
4
width: 100%;
5
height: 100%;
6
margin: 0;
7
padding: 0;
8
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
// The data that have been used for this sample can be taken from the CDN
3
// https://cdn.anychart.com/csv-data/orcl-daily-short.js
4
// https://cdn.anychart.com/csv-data/empty_data(2009-2010).js
5
6
// create data tables on loaded data
7
var orclDataTable = anychart.data.table();
8
orclDataTable.addData(get_orcl_daily_short_data()); // eslint-disable-line no-undef
9
10
var emptyDataTable = anychart.data.table();
11
emptyDataTable.addData(get_empty_data()); // eslint-disable-line no-undef
12
13
// create stock chart
14
var chart = anychart.stock();
15
16
// set chart title
17
chart.title('Annotated Candlestick Chart');
18
19
// set chart padding
20
chart.padding([15, 50, 57, 50]);
21
22
// create plot on the chart
23
var plot = chart.plot();
24
25
// grid settings
26
plot.yGrid(true).xGrid(true).xMinorGrid(true).yMinorGrid(true);
27
28
// format legend items
29
plot.legend().itemsFormatter(function (items) {
30
items.splice(1, 1);
31
// return items array
32
return items;
33
});
34
35
var ORCL = plot.candlestick(
36
orclDataTable.mapAs({
37
open: 1,
38
high: 2,
39
low: 3,
40
close: 4
41
})
42
);
43
ORCL.name('ORCL');
44
ORCL.legendItem().iconType('rising-falling');
45
ORCL.tooltip().format(function () {
46
if (this.open === 0 && isNaN(this.close)) {
47
return (
48
'<span>' +
49
this.seriesName +
50
'</span><br/>' +
51
'<span style="color: #ccc">Open</span>: undefined' +
52
'<br/><span style="color: #ccc">High</span>: undefined' +
53
'<br/><span style="color: #ccc">Low</span>: undefined' +
54
'<br/><span style="color: #ccc">Close</span>: undefined'
55
);
56
}
57
return (
58
'<span>' +
59
this.seriesName +
60
'</span><br/>' +
61
'<span style="color: #ccc">Open</span>: ' +
62
this.open +
63
'<br/><span style="color: #ccc">High</span>: ' +
64
this.high +
65
'<br/><span style="color: #ccc">Low</span>: ' +
66
this.low +
67
'<br/><span style="color: #ccc">Close</span>: ' +
68
this.close
69
);
70
});
71
72
// create plot empty series with mapped data
73
plot
74
.line()
75
.data(
76
emptyDataTable.mapAs({
77
value: 1
78
})
79
)
80
.stroke('none')
81
.tooltip(false);
82
83
var annotation = plot.annotations();
84
// create annotation andrewsPitchfork
85
annotation.andrewsPitchfork({
86
// X - part of the first anchor
87
xAnchor: '2008-02-17',
88
// Y - part of the first anchor
89
valueAnchor: 18.18,
90
// X - part of the second anchor
91
secondXAnchor: '2008-08-03',
92
// Y - part of the second anchor
93
secondValueAnchor: 23.62,
94
// X - part of the third anchor
95
thirdXAnchor: '2009-03-08',
96
// Y - part of the third anchor
97
thirdValueAnchor: 13.8,
98
// set stroke settings
99
stroke: '1.5 #FA8072',
100
// set hover stroke settings
101
hovered: {
102
stroke: '2 #FA8072'
103
}
104
});
105
106
// create annotation rectangle
107
annotation.rectangle({
108
// X - part of the first anchor
109
xAnchor: '2009-03-29',
110
// Y - part of the first anchor
111
valueAnchor: 17.25,
112
// X - part of the second anchor
113
secondXAnchor: '2009-12-25',
114
// Y - part of the second anchor
115
secondValueAnchor: 22,
116
// set stroke settings
117
stroke: '3 #FADA72',
118
// set fill settings
119
fill: '#FADA72 0.25',
120
// set hover stroke settings
121
hovered: {
122
stroke: '3 #FADA72'
123
}
124
});
125
126
// create scroller series with mapped data
127
chart.scroller().candlestick(
128
orclDataTable.mapAs({
129
open: 1,
130
high: 2,
131
low: 3,
132
close: 4
133
})
134
);
135
chart.tooltip().useHtml(true);
136
// set container id for the chart
137
chart.container('container');
138
// initiate chart drawing
139
chart.draw();
140
141
// create range picker
142
var rangePicker = anychart.ui.rangePicker();
143
// init range picker
144
rangePicker.render(chart);
145
146
// create range selector
147
var rangeSelector = anychart.ui.rangeSelector();
148
// init range selector
149
rangeSelector.render(chart);
150
});