markerWidth property
Specifies the marker width in logical pixels.
Defaults to 10
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
pointers: <GaugePointer>[MarkerPointer(value: 50,
markerWidth: 20
)],
)]
));
}
Implementation
final double markerWidth;