upperLineWidth property

double upperLineWidth
final

Width of the upper line for stochastic Indicator.

Defaults to 2.

Widget build(BuildContext context) {
 return SfCartesianChart(
   indicators: <TechnicalIndicator<Sample, num>>[
     StochasticIndicator<Sample, num>(
       seriesName: 'Series1',
       upperLineWidth: 4.0
     ),
   ],
   series: <CartesianSeries<Sample, num>>[
     HiloOpenCloseSeries<Sample, num>(
       name: 'Series1'
     )
   ]
 );
}

Implementation

final double upperLineWidth;