showZones property
ShowZones boolean value for RSI indicator
Defaults to true
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
RsiIndicator<dynamic, dynamic>(
showZones : false,
),
));
}
Implementation
final bool showZones;