dashArray property
Specifies the dash array for axis line to draw the dashed line.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis
(axisLineStyle:
AxisLineStyle(dashArray: <double>[5, 5],)]
));
}
Implementation
final List<double>? dashArray;