borderWidth property

double borderWidth
final

Specifies the border width of the gauge title.

Defaults to 0.

Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
           title: GaugeTitle(
                   text: 'Gauge Title',
                   borderColor: Colors.red,
                   borderWidth: 1
                  )
       ));
}

Implementation

final double borderWidth;