<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.sparkline([5, 50, 10, 60, 70, 30]);
chart.type("column");
chart.container("container");
chart.draw();
// Get fill color.
var fill = chart.fill();
chart.title({text: "Get and use chart fill", fontColor: fill, orientation: "top"});
});