ticksPosition property

ElementsPosition ticksPosition
final

Positions the tick lines inside or outside the axis line.

If ElementsPosition.inside, the position of the tick is inside the axis line. If ElementsPosition.outside, the position of the tick is outside the axis line.

Defaults to ElementsPosition.inside.

Also refer ElementsPosition.

Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
         axes:<RadialAxis>[RadialAxis(
          ticksPosition: ElementsPosition.outside,
           )]
       ));
}

Implementation

final ElementsPosition ticksPosition;