upperLineWidth property

double upperLineWidth
final

Width of the upperLine for RSI indicator.

Defaults to 2.

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

Implementation

final double upperLineWidth;