repeatUntil property
dynamic
repeatUntil
final
End of the plot band need to be repeated.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
primaryXAxis: NumericAxis(
plotBands: <PlotBand>[
PlotBand(
isVisible:true,
repeatUntil: 600
)
]
)
)
);
}
Implementation
final dynamic repeatUntil;