start property
dynamic
start
final
Specifies the start value of plot band.
Defaults to true
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
primaryXAxis: NumericAxis(
plotBands: <PlotBand>[
PlotBand(
isVisible:true,
start: 1,
end: 5
)
]
)
)
);
}
Implementation
final dynamic start;