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_weather_data());
4
5
var mapping = dataTable.mapAs({value: 2});
6
7
var chart = anychart.stock();
8
9
var plot = chart.plot();
10
11
var series = plot.line(mapping);
12
13
// Gets series name.
14
var name = series.name();
15
16
series.name(name + ', temperature');
17
18
chart.container('container');
19
chart.draw();
20
});