lowerLineColor property
Color of the lowerLine for RSI indicator.
Defaults to green
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
RsiIndicator<dynamic, dynamic>(
lowerLineColor : Colors.blue,
),
));
}
Implementation
final Color lowerLineColor;