type property
Type of the error bar.
Defaults to ErrorBarType.fixed.
Other values are ErrorBarType.percentage,
ErrorBarType.standardDeviation,
ErrorBarType.custom, ErrorBarType.standardError.
Widget build(BuildContext context) {
return SfCartesianChart(
series: <ErrorBarSeries<SalesData, String>>[
ErrorBarSeries<SalesData, String>(
type:ErrorBarType.fixed,
),
],
);
}
Implementation
final ErrorBarType? type;