areaBackground property

dynamic areaBackground

Gets or sets the areaBackground Brush of this GraphObject. The areaBackground fills the rectangle described by this GraphObject's containing panel's coordinates. If the object is rotated, the area background will expand to fill the entire measured bounds of the object, without rotating the brush.

The value may be either a Brush object or a string that is a CSS color. The default value is null -- no area background is drawn. More information about the syntax of CSS color strings is available at: CSS colors (mozilla.org).

Implementation

_i2.dynamic get areaBackground => _i4.getProperty(
      this,
      'areaBackground',
    );
void areaBackground=(dynamic value)

Implementation

set areaBackground(_i2.dynamic value) {
  _i4.setProperty(
    this,
    'areaBackground',
    value,
  );
}