plotOffsetStart property

double? plotOffsetStart
final

The plotOffsetStart property is used to offset the rendering of the axis at start position.

Defaults to null.

Widget build(BuildContext context) {
    return SfCartesianChart(
        primaryXAxis: NumericAxis(plotOffsetStart: 60),
    );
}

Implementation

final double? plotOffsetStart;