anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container", 600, 400);
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
chart.bar(4).hatchFill(true);
chart.bar(3).hatchFill(true);
chart.bar(2).hatchFill(true);
chart.bar(1).hatchFill(true);
chart.bar(0).hatchFill(true);
chart.hatchFillPalette(["divot", "checkerBoard", "confetti", "diagonalCross", "zigZag"]);
chart.title("Set hatch fill palette.");