periodLineWidth property
Width of the periodLIne for Stochastic Indicator.
Defaults to 2
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
StochasticIndicator<dynamic, dynamic>(
periodLineWidth :5.0,
),
));
}
Implementation
final double periodLineWidth;