anychart.onDocumentReady(function () {
var chart = anychart.sparkline([1, 4, -7, 1, -3, 6, -8, 3]);
var negativeLabels = chart.negativeLabels();
negativeLabels.enabled(true);
negativeLabels.fontSize(15);
chart.title({text: 'Get and modify labels for negative points', orientation: 'top'});
chart.container('container');