horizontalErrorValue property

double? horizontalErrorValue
final

Horizontal error value in X direction..

Defaults to 1.

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <ErrorBarSeries<SalesData, String>>[
      ErrorBarSeries<SalesData, String>(
        horizontalErrorValue:2,
        mode: RenderingMode.horizontal,
      ),
    ],
  );
}

Implementation

final double? horizontalErrorValue;