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