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 table = anychart.data.table();
3
4
// The data used in this sample can be obtained from the CDN
5
// https://cdn.anychart.com/csv-data/dji-daily-short.js
6
table.addData(get_dji_daily_short_data());
7
8
var mapping = table.mapAs(
9
{open: 1, high: 2, low: 3, close: 4, value: 3}
10
);
11
12
var chart = anychart.stock();
13
14
var plot = chart.plot();
15
plot.ohlc(mapping);
16
17
var ppoIndicator = chart.plot(1).ppo(mapping);
18
19
// Set series type.
20
ppoIndicator.signalSeries('area');
21
22
chart.title('Set series type');
23
chart.container('container');
24
chart.draw();
25
});