bandColor property
Band Color of the Bollinger Band
Defaluts to Colors.grey.withOpacity(0.25)
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
BollingerBandIndicator<dynamic, dynamic>(
bandColor: Colors.transparent,)},
));
}
Implementation
final Color bandColor;