labelsPosition property
Positions the axis labels inside or outside the axis line.
If ElementsPosition.inside, the position of the labels is inside the axis line. If ElementsPosition.outside, the position of the labels is outside the axis line.
Defaults to ElementsPosition.inside
.
Also refer ElementsPosition
Widget build(BuildContext context) {
return Container(
child: SfRadialGauge(
axes:<RadialAxis>[RadialAxis(
labelsPosition: ElementsPosition.outside,
)]
));
}
Implementation
final ElementsPosition labelsPosition;