verticalNegativeErrorValue property
Vertical error value in negative 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,
verticalNegativeErrorValue:2
),
],
);
}
Implementation
final double? verticalNegativeErrorValue;