capLength property
Length of the error bar's cap.
Defaults to 10
.
Widget build(BuildContext context) {
return SfCartesianChart(
series: <ErrorBarSeries<SalesData, String>>[
ErrorBarSeries<SalesData, String>(
capLength:20.0,
),
],
);
}
Implementation
final double? capLength;