horizontalNegativeErrorValue property

double? horizontalNegativeErrorValue
final

Horizontal error value in negative X direction. It's only applicable for 'ErrorBarType.custom'.

Defaults to 1.

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

Implementation

final double? horizontalNegativeErrorValue;