plotOffset property
The plotOffset property is used to offset the rendering of the axis at start and end position.
Defaults to null
.
Widget build(BuildContext context) {
return SfCartesianChart(
primaryXAxis: NumericAxis(plotOffset: 60),
);
}
Implementation
final double? plotOffset;