lowerLineColor property
Lower line color value of the bollinger band.
Defaults to Colors.green
.
Widget build(BuildContext context) {
return SfCartesianChart(
indicators: <TechnicalIndicators<Sample, num>>[
BollingerBandIndicator<Sample, num>(
period: 2,
standardDeviation: 3,
lowerLineColor: Colors.red
),
],
);
}
Implementation
final Color lowerLineColor;