<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.sparkline([1.3, 2, 1.4, 4, 2.3, 6]);
// Set left bound
chart.left('10%');
// Set right bound
chart.right('10%');
// Set top bound
chart.top('20%');
// Set bottom bound
chart.bottom('20%');
chart.title({text: 'Set left/right/top/bottom bound', orientation: 'top'});
chart.container('container');
chart.draw();
});