signalLineWidth property
Property to provide the width of the signal line in the technical indicators.
Defaults to 2
.
Widget build(BuildContext context) {
return SfCartesianChart(
indicators: <TechnicalIndicators<Sample, num>>[
StochasticIndicator<Sample, num>(
signalLineWidth : 4.0
),
],
);
}
Implementation
final double signalLineWidth;