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
plot.ohlc(mapping);
11
12
var priceIndicator1 = plot.priceIndicator();
13
priceIndicator1.value('last-visible');
14
priceIndicator1.fallingStroke('#F44336');
15
16
// Disable falling label.
17
priceIndicator1.fallingLabel(false);
18
19
var priceIndicator2 = plot.priceIndicator(1);
20
priceIndicator2.value('first-visible');
21
priceIndicator2.risingStroke('#4CAF50');
22
23
// Disable rising label.
24
priceIndicator2.risingLabel(false);
25
26
chart.title('Disable rising and falling label');
27
chart.container('container');
28
chart.draw();
29
30
chart.selectRange('ytd');
31
});