macdLineColor property

Color macdLineColor
final

MacdLine color of the macd indicator.

Defaults to Colors.orange

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
              indicators: <TechnicalIndicators<dynamic, dynamic>>[
                      MacdIndicator<dynamic, dynamic>(
                            macdLineColor: Colors.orange,)]
                 ));
}

Implementation

final Color macdLineColor;