repeatEvery property

dynamic repeatEvery
final

Interval of the plot band need to be repeated.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
          primaryXAxis: NumericAxis(
            plotBands: <PlotBand>[
               PlotBand(
                   isVisible:true,
                   repeatEvery: 200
               )
             ]
          )
       )
    );
}

Implementation

final dynamic repeatEvery;