This example shows how to use the `Graphics` to create a basic shape.
Create a `Graphic` instance
``` var mygraphic = new Y.Graphic({render:"#mygraphiccontainer"}); ```Use the `addShape` method to create an ellipse.
``` var myellipse = mygraphic.addShape({ type: "ellipse", fill: { color: "#9aa" }, stroke: { weight: 2, color: "#000" } }); ```