anychart.onDocumentReady(function () {
var chart = anychart.sparkline([50, 5, 10, 60, 20, 70, 30]);
chart.seriesType('column');
chart.firstFill('#4CAF50');
var firstFill = chart.firstFill();
chart.title({text: 'Get and use fill for the first point', fontColor: firstFill, orientation: 'top'});
chart.container('container');