upperLineColor property
UpperLine Color of the bollinger bands.
Defaluts to Colors.red
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
BollingerBandIndicator<dynamic, dynamic>(
upperLineColor: Colors.red,)},
));
}
Implementation
final Color upperLineColor;