upperLineWidth property

double upperLineWidth
final

UpperLine width value of the bollinger bands.

Defaluts to 2

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

Implementation

final double upperLineWidth;