intermediateSumColor property

Color? intermediateSumColor
final

Color of the intermediate sum points in the series.

If no color is specified, then the intermediate sum points will be rendered with the series default color.

Defaults to null.

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <WaterfallSeries<SalesData, num>>[
      WaterfallSeries<SalesData, num>(
        intermediateSumColor: Colors.red,
      ),
    ],
  );
}

Implementation

final Color? intermediateSumColor;