lowPointColor property

Color? lowPointColor
final

Customizes the color of the lowest rectangular column segment.

When the lowest data point is the first or last data point of the provided data set, then either the first or last point color gets applied.

Defaults to null.

@override
Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
       child: SfSparkWinLossChart(
     lowPointColor: Colors.red
      )
    ),
  );
}

Implementation

final Color? lowPointColor;