anychart.onDocumentReady(function () {
var chart = anychart.column();
chart.yGrid().stroke({color: "#FFF",dash: "3 5"});
chart.xGrid().stroke({color: "#FFF",dash: "3 5"});
chart.title("Custom Grid Stroke");
chart.background().fill({keys: ["#BB0000", "#440000"],angle: 45});
var series = chart.column(data);
series.fill("#FF0 0.85");
chart.yAxis().stroke("white");
chart.yAxis().ticks(false);
chart.yAxis().labels().fontColor("white");
chart.xAxis().stroke("white");
chart.xAxis().labels().fontColor("white");
chart.container("container");