/** * @class Ext.draw.sprite.Circle * @extend Ext.draw.sprite.Path * * A sprite that represents a circle. * * @example * Ext.create({ * xtype: 'draw', * renderTo: document.body, * width: 600, * height: 400, * sprites: [{ * type: 'circle', * cx: 100, * cy: 100, * r: 50, * fillStyle: '#1F6D91' * }] * }); */ /** * @cfg {Number} [cx=0] * The center coordinate of the sprite on the x-axis. */ /** * @cfg {Number} [cy=0] * The center coordinate of the sprite on the y-axis. */ /** * @cfg {Number} [r=0] * The radius of the sprite. */