backgroundStyle property

  1. @HostBinding.new('style.background')
String get backgroundStyle

What style.background. is set on the host component.

A selected and selectable scorecard uses selectedColor.

Implementation

@HostBinding('style.background')
String get backgroundStyle => selected
    ? selectedColor?.hexString ?? chartingPalette[0].hexString
    : 'inherit';