<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var stage = anychart.graphics.create('container');
stage.circle(250, 220, 200);
stage.rect(0, 0, 500, 450);
var credits = stage.credits();
// Enable credits.
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
credits.enabled(true);
});