lowerLineWidth property

double lowerLineWidth
final

Lower line width value of the bollinger band.

Defaults to 2.

Widget build(BuildContext context) {
 return SfCartesianChart(
   indicators: <TechnicalIndicators<Sample, num>>[
     BollingerBandIndicator<Sample, num>(
       period: 2,
       standardDeviation: 3,
       lowerLineWidth: 4
     ),
   ],
 );
}

Implementation

final double lowerLineWidth;