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, 5, 10, 60, 20, 70, 30]);
3
chart.type("column");
4
chart.firstFill("#4CAF50");
5
6
// Get fill color for the first point.
7
var firstFill = chart.firstFill();
8
9
chart.title({text: "Get and use fill for the first point", fontColor: firstFill, orientation: "top"});
10
chart.container("container");
11
chart.draw();
12
});