<div id="container"></div>
html, body, #container {
width: 90%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.polar();
// set the container id
chart.container("container");
placeChart();
chart.draw();
// move the chart when resizing
window.onresize = function(event) {
};
// move the chart
function placeChart() {
chart.left(-chart.container().getBounds().width+30);
});