signalLineColor property
Property to provide the color of the signal line in the technical indicators.
Defaults to Colors.blue
.
Widget build(BuildContext context) {
return SfCartesianChart(
indicators: <TechnicalIndicators<Sample, num>>[
StochasticIndicator<Sample, num>(
signalLineColor : Colors.red,
),
],
);
}
Implementation
final Color signalLineColor;