lowerLineWidth property
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>(
lowerLineWidth : 4.0,
),
));
}
Implementation
final double lowerLineWidth;