lowerLineColor property
LowerLine Color value of the bollinger bands
Defaluts to Colors.green
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
BollingerBandIndicator<dynamic, dynamic>(
lowerLineColor: Colors.green,)},
));
}
Implementation
final Color lowerLineColor;