legend property

Legend legend
final

Customizes the legend in the chart

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           legend: Legend(isVisible: true, position: LegendPosition.auto)
       ));
}

Implementation

final Legend legend;