anychart.onDocumentReady(function () {
var chart = anychart.line([
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.finiteTrendChannel();
annotation.valueAnchor(13.5);
annotation.secondXAnchor(2);
annotation.secondValueAnchor(19);
annotation.channelWidth(-2);
annotation.hatchFill('dashed-backward-diagonal', '#795548', 0.6, 10);
chart.title('Set hatch fill parameters');
chart.container('container');