maximum property
The maximum value of the axis.
The axis will end at this value.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
primaryXAxis: NumericAxis(maximum: 200),
)
);
}
Implementation
final double? maximum;