lowerLineWidth property

double lowerLineWidth
final

LowerLine Width value of the bollinger bands

Defaluts to 2

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
           indicators: <TechnicalIndicators<dynamic, dynamic>>[
           BollingerBandIndicator<dynamic, dynamic>(
               lowerLineWidth: 2,)},
       ));
}

Implementation

final double lowerLineWidth;