animationDelay property

  1. @override
double animationDelay
final

Delay duration of the series animation. It takes a millisecond value as input. By default, the series will get animated for the specified duration. If animationDelay is specified, then the series will begin to animate after the specified duration.

Defaults to 0.

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           series: <PieSeries<ChartData, String>>[
               PieSeries<ChartData, String>(
                 animationDelay: 500;
               ),
           ],
       )
   );
}

Implementation

@override
final double animationDelay;