<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
var stage = acgraph.create('container');
var rectangle = stage.rect(50, 50, 150, 75);
rectangle.fill('#A5D6A7');
// Set description.
// This call will add <description> node to the element.
// Use inspect element tool to check it.
rectangle.desc('Green rectangle');