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,
                   child: Container(
                   child: const Text('Empty data')),
             ),
            ],
       ));
}

Implementation

final int angle;