<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.sparkline([50, 15, 10, 60, 20, 65, 30]);
// Enable label for the maximum point.
chart.maxLabels(true);
chart.height('9%');
chart.title({text: 'Enable label for the maximum point', orientation: 'top'});
chart.container('container');
chart.draw();
});