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([5, 50, 10, 60, 70, 30]);
3
4
chart.seriesType('column');
5
chart.container('container');
6
chart.draw();
7
8
// Get fill color.
9
var fill = chart.fill();
10
11
chart.title({text: 'Get and use chart fill', fontColor: fill, orientation: 'top'});
12
});