verticalPositiveErrorValue property

double? verticalPositiveErrorValue
final

Vertical error value in positive Y direction. It's only applicable for 'ErrorBarType.custom'.

Defaults to 3.

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <ErrorBarSeries<SalesData, String>>[
      ErrorBarSeries<SalesData, String>(
        type:ErrorBarType.custom,
        verticalPositiveErrorValue:2
      ),
    ],
  );
}

Implementation

final double? verticalPositiveErrorValue;