Fill
The fill()
method fills the current image (path). The default color is white.
Note: If the path is not closed, the fill() method adds a line from the end of the path to the start point to close the path and then populate the path.
Example
var ctx = node.getComponent(cc.Graphics);
ctx.rect (20,20,150,100);
ctx.fillColor = cc.Color.GREEN;
ctx.fill();
Return to Graphics Component Reference