isRepeatable property

bool isRepeatable
final

Specifies the plot band need to be repeated in specified interval.

Defaults to false.

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

Implementation

final bool isRepeatable;