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 chart = anychart.sparkline([5, 50, 10, 60, 20, 70, 30]);
3
4
// Get series type.
5
var type = chart.seriesType();
6
7
chart.title({text: 'Series type is a ' + type, orientation: 'top'});
8
chart.container('container');
9
chart.draw();
10
});