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([70, 5, 10, 60, 20, 50, 30]);
3
chart.seriesType('column');
4
5
// Set solid fill color for the last point.
6
chart.lastFill('#4CAF50');
7
8
chart.title({text: 'Set fill parameter as a string for the last point', orientation: 'top'});
9
chart.container('container');
10
chart.draw();
11
});