anychart.onDocumentReady(function () {
var chart = anychart.sparkline([50, -15, 10, 60, 20, 70, -30]);
chart.seriesType('column');
var negativeMarkers = chart.negativeMarkers();
negativeMarkers.enabled(true);
negativeMarkers.fill('#4CAF50');
chart.title({text: 'Get and modify markers for negative points', orientation: 'top'});
chart.container('container');