anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var palette = ["divot", "grid", "vertical", "horizontal", "confetti", "diagonalCross", "zigZag"];
var pyramidChart = anychart.pyramid([
{x: "Physical", value: 125},
{x: "Data Link", value: 125},
{x: "Network", value: 125},
{x: "Transport", value: 125},
{x: "Session", value: 125},
{x: "Presentation", value: 125},
{x: "Application", value: 390, label: {anchor: "centerTop"}}
pyramidChart.labels({position: "inside"});
pyramidChart.bounds(0, 20, "50%", "100%");
pyramidChart.hatchFill(true);
pyramidChart.legend(false);
pyramidChart.hatchFillPalette(palette);
pyramidChart.title("Set hatch fill parameter.");
pyramidChart.container(stage);
var pieChart = anychart.pie([7, 7, 7, 7, 7, 7, 7]);
pieChart.hatchFill(true);
pieChart.bounds("50%", 20, "50%", "100%");
var pyramidChartHatchFillPalette = pyramidChart.hatchFillPalette();
pieChart.hatchFillPalette(pyramidChartHatchFillPalette);
pieChart.container(stage);
var customTitle = anychart.standalones.title();
customTitle.text("Get and use chart hatchFillPalette.");
customTitle.container(stage);