text property
Text to be displayed as gauge title.
If the text of the gauge exceeds, then text will be wrapped into multiple rows.
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
title: GaugeTitle(
text: 'Gauge Title'
)
));
}
Implementation
final String text;