angle property
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;