backgroundColor property

Color backgroundColor
final

The background color of the SfRadialGauge.

The backgroundColor applied for the SfRadialGauge boundary.

This property is a type of Color.

Defaults to Colors.transparent.

Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
          backgroundColor: Colors.yellow
         axes:<RadialAxis>[RadialAxis(
           )]
       ));
}

Implementation

final Color backgroundColor;