anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var polar1 = anychart.polar();
polar1.title("Cell Color: Radial Grid");
polar1.bounds(0, 0, "50%", "100%");
polar1.xGrid().palette(["gray 0.05", "gray 0.1"]);
polar1.xScale().maximum(360);
var polar2 = anychart.polar();
polar2.title("Cell Color: Circular Grid");
polar2.bounds("50%", 0, "50%", "100%");
polar2.yGrid().palette(["gray 0.05", "gray 0.1"]);
polar2.xScale().maximum(360);