lowerLineColor property

Color lowerLineColor
final

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;