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({value: 1});
6
7
var chart = anychart.stock();
8
9
var plot = chart.plot();
10
plot.line(mapping);
11
12
chart.xScale('scatter');
13
chart.container('container');
14
chart.draw();
15
16
var xScale = chart.xScale();
17
18
// Tries to get a tick.
19
xScale.inverseTransform(0.5, 10601.4004);
20
// Returns 1159747200000 ('2006-10-02')
21
});