anychart.onDocumentReady(function () {
var chart = anychart.line([6, 10, 18, 11, 9]);
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.verticalLine();
annotation.hoverStroke(function () {
return "3 " + this.sourceColor;
chart.title("Set hover stroke parameter as a function.");
chart.container("container");