anychart.onDocumentReady(function () {
var chart = anychart.line([6, 10, 18, 11, 9]);
chart.yScale().minimum(0);
var controller = chart.annotations();
var annotation = controller.triangle();
annotation.valueAnchor(17);
annotation.secondXAnchor(2);
annotation.secondValueAnchor(19);
annotation.thirdXAnchor(2.2);
annotation.thirdValueAnchor(17);
annotation.selectFill(["#FEFEFE", "#424242"], 0.6, 0.5, null, 0.8, 0.9, 0.31);
chart.title("Set select fill as a radial gradient.");
chart.container("container");