anychart.onDocumentReady(function () {
var stage = anychart.graphics.create('container');
var pattern = stage.pattern(new anychart.graphics.math.Rect(0, 0, 20, 20));
pattern.star5(10, 10, 8).stroke('#78909C');
var chart = anychart.column();
var series = chart.column([
{x: 'Cycling', value: 10},
{x: 'Swimming', value: 12},
{x: 'Hiking', value: 11},
{x: 'Alpinism', value: 9}
var state = series.normal();
state.hatchFill(pattern);
chart.title('Set state hatch fill as a pattern');