anychart.onDocumentReady(function () {
var chart = anychart.line(data);
chart.tooltip().format("Year: {%x}\nSales: {%value}");
chart.yScale().minimum(0);
chart.yScale().maximum(30000);
chart.yScale().ticks().interval(5000);
chart.yAxis().labels().format("${%value}");
var rangeMarker = chart.rangeMarker();
rangeMarker.axis(chart.yAxis());
rangeMarker.fill("#009900 0.4");
var rangeMarker1 = chart.rangeMarker(1);
rangeMarker1.axis(chart.yAxis());
rangeMarker1.fill("#ffa000 0.4");
rangeMarker1.from(10000);
var rangeMarker2 = chart.rangeMarker(2);
rangeMarker2.axis(chart.yAxis());
rangeMarker2.fill("#dd2c00 0.4");
var textMarker = chart.textMarker(0);
textMarker.axis(chart.yAxis());
textMarker.align("left");
textMarker.anchor("left-center");
textMarker.fontColor("#212121");
textMarker.text("Good: [20,000.00 - 30,000.00]");
var textMarker1 = chart.textMarker(1);
textMarker1.axis(chart.yAxis());
textMarker1.align("center");
textMarker1.anchor("center");
textMarker1.value(15000);
textMarker1.fontColor("#212121");
textMarker1.hAlign("center");
textMarker1.text("Average\n[20,000.00 - 30,000.00]");
textMarker1.fontSize(13);
var textMarker2 = chart.textMarker(2);
textMarker2.axis(chart.yAxis());
textMarker2.align("right");
textMarker2.anchor("right-center");
textMarker2.fontColor("#212121");
textMarker2.text("Severe");
textMarker2.fontSize(13);
chart.container("container");