anychart.onDocumentReady(function () {
var chart = anychart.line([
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.infiniteLine();
annotation.valueAnchor(10);
annotation.secondXAnchor(3);
annotation.secondValueAnchor(11);
annotation.stroke('#009688', 3, '5 2', 'round');
chart.title('Set stroke parameters');
chart.container('container');