angle property

int angle
final

Angle to rotate the annotation.

Defaults to 0.

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           annotations: <CircularChartAnnotation>[
               CircularChartAnnotation(
                   angle: 40,
                   widget: const Text('Circular'),
              ),
          ],
       )
   );
}

Implementation

final int angle;