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
7
1
anychart.onDocumentReady(function () {
2
var chart = anychart.sparkline([2, 8, 4, 10]);
3
chart.height("50%");
4
chart.type(anychart.enums.SparklineSeriesType.COLUMN); //set type of series
5
chart.container("container");
6
chart.draw();
7
});