VMLCircle.js revision 09688ec5ffb8b9cf9883a770e2f9ebd60b28888d
/**
* Draws an circle
*/
{
};
/**
* Indicates the type of shape
*
* @property _type
* @readOnly
* @type String
*/
_type: "oval"
});
/**
* Horizontal radius for the circle.
*
* @attribute radius
* @type Number
*/
radius: {
lazyAdd: false,
value: 0
},
/**
* Width of the circle
*
* @attribute width
* @readOnly
* @type Number
*/
width: {
readOnly: true,
getter: function()
{
return val;
}
},
/**
* Width of the circle
*
* @attribute width
* @readOnly
* @type Number
*/
height: {
readOnly: true,
getter: function()
{
return val;
}
}
});