shadowColor property

String get shadowColor

Gets or sets the CSS string that describes a shadow color. Default is 'gray'. Brushes cannot be used for this property -- only strings.

The opacity of the shadow color is multiplied by the opacity of the shadowed object's brush. So, for example, if you have a Panel with a GraphObject#background that is "transparent", the shadow that is drawn for the panel will also be transparent.

Implementation

_i2.String get shadowColor => _i4.getProperty(
      this,
      'shadowColor',
    );
set shadowColor (String value)

Implementation

set shadowColor(_i2.String value) {
  _i4.setProperty(
    this,
    'shadowColor',
    value,
  );
}