anychart.onDocumentReady(function () {
var chart = anychart.line([
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.horizontalLine();
annotation.valueAnchor(10);
chart.title('Set value anchor');
chart.container('container');