centerX property
Left location of center axis.
The centerX value must be between 0 to 1. Change the left position of the axis inside the boundary of the widget.
Defaults to 0.5
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
centerX: 0.2,
)]
));
}
Implementation
final double centerX;