showAxisLine property
Whether to show the axis line of the gauge.
Defaults to true
.
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
showAxisLine: false,
)]
));
}
Implementation
final bool showAxisLine;