anychart.onDocumentReady(function () {
var chart = anychart.quadrant();
chart.yScale().minimum(-100).ticks().set([-80, -60, -40, -20, 20, 40, 60, 80]);
chart.yScale().maximum(100).ticks().set([-80, -60, -40, -20, 20, 40, 60, 80]);
chart.xScale().minimum(-100).ticks().set([-80, -60, -40, -20, 20, 40, 60, 80]);
chart.xScale().maximum(100).ticks().set([-80, -60, -40, -20, 20, 40, 60, 80]);
chart.xAxis(0, {ticks: true, labels: {enabled: true, fontColor: 'black'}});
chart.xAxis(1, {ticks: true, labels: {enabled: true, fontColor: 'black'}});
chart.yAxis(0, {ticks: true, labels: {enabled: true, fontColor: 'black'}});
chart.yAxis(1, {ticks: true, labels: {enabled: true, fontColor: 'black'}});
chart.xGrid().enabled(true).stroke('black 1');
chart.yGrid().enabled(true).stroke('black 1');
var controller = chart.annotations();
var topRight = controller.rectangle({
var bottomRight = controller.rectangle({
var topLeft = controller.rectangle({
var bottomLeft = controller.rectangle({
var bottomLeft = controller.rectangle({
var bottomLeft = controller.rectangle({
var bottomLeft = controller.rectangle({
var bottomLeft = controller.rectangle({
chart.crossing().stroke("black", 1);
chart.container("container");