anychart.onDocumentReady(function () {
var chart = anychart.area();
var firstSeries = chart.splineArea([
{x: "January", value: 16},
{x: "February", value: 10},
firstSeries.hatchFill("zigZag");
var secondSeries = chart.splineArea([
{x: "January", value: 10},
{x: "February", value: 25},
var hatchFill = firstSeries.hatchFill();
secondSeries.hatchFill(hatchFill);
chart.title("Get and use hatch fill");
chart.container("container");