histogramPositiveColor property

Color histogramPositiveColor
final

Histogram Positive color of the macd indicator.

Defaults to Colors.green

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

Implementation

final Color histogramPositiveColor;