2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * Abstract class for creating groups of circles with the same styles and dimensions.
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * @module graphics
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * @class GroupCircle
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * @constructor
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp CircleGroup.superclass.constructor.apply(this, arguments);
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * Algorithm for drawing shape.
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * @method drawShape
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp * @param {Object} cfg Parameters used to draw the shape.
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp getter: function()
2f9140ce9f71cf8cccd9d8eebe770f6825e36f5bTripp radius = Y_Lang.isArray(width) ? this._getRadiusCollection(width) : (width * 0.5);