anychart.onDocumentReady(function () {
var chart = anychart.line([
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.verticalLine();
annotation.stroke('#009688', 2, '5 2', 'round');
chart.title('Set stroke parameters');
chart.container('container');