HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
var stage = acgraph.create('container');
2
stage.circle(250, 220, 200);
3
stage.rect(0, 0, 500, 450);
4
5
// Disable credits.
6
// You can't customize credits without a license key. See https://www.anychart.com/buy/ to learn more.
7
stage.credits(false);