radius property

num get radius

Gets or sets the horizontal radius of the elliptical arrangement.

The default value is NaN. NaN indicates that the #spacing will determine the size of the ring. If #spacing is also NaN, the effective spacing will be 6. If #spacing is a number, the effective radius will be > radius if and only if the spacing between elements would otherwise be less than spacing. The specified value for #radius will be ignored if #arrangement === CircularLayout.Packed. This property must always be positive or NaN.

Implementation

_i2.num get radius => _i4.getProperty(
      this,
      'radius',
    );
set radius (num value)

Implementation

set radius(_i2.num value) {
  _i4.setProperty(
    this,
    'radius',
    value,
  );
}