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, 65, 30]);
3
4
// Set label for the maximum point.
5
chart.maxLabels({fontSize: 9, fontColor: "#FF0000"});
6
7
chart.height("9%");
8
chart.title({text: "Set labels parameter as an object for the maximum point", orientation: "top"});
9
chart.container("container");
10
chart.draw();
11
});