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
var dataTable = anychart.data.table();
3
dataTable.addData(get_dji_daily_short_data());
4
5
var mapping = dataTable.mapAs({open: 1, high: 2, low: 3, close: 4});
6
7
var chart = anychart.stock();
8
9
var plot = chart.plot();
10
11
var series = plot.candlestick(mapping);
12
13
// Set rising hatch fill.
14
series.risingHatchFill(function () {
15
if (this.x < new Date('2006-01-02').getTime())
16
return {type: 'zig-zag', color: '#FFFFFF', size: 10}
17
});
18
19
chart.title('Set rising hatch fill parameter as a function');
20
chart.container('container');
21
chart.draw();
22
23
chart.selectRange('2004-05-01', '2006-07-02')
24
});