periodLineColor property
Color of the periodLine for Stochastic Indicator.
Defaults to yellow
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
StochasticIndicator<dynamic, dynamic>(
periodLineColor :Colors.orange,
),
));
}
Implementation
final Color periodLineColor;