lowerLineWidth property

double lowerLineWidth
final

Width of the lower line for RSI indicator.

Defaults to 2.

Widget build(BuildContext context) {
 return SfCartesianChart(
   indicators: <TechnicalIndicators<Sample, num>>[
     RsiIndicator<Sample, num>(
       seriesName: 'Series1'
       lowerLineWidth : 4.0
     ),
   ],
   series: <ChartSeries<Sample, num>>[
     HiloOpenCloseSeries<Sample, num>(
       name: 'Series1'
     )
   ]
 );
}

Implementation

final double lowerLineWidth;