lastPointColor property

Color? lastPointColor
final

Customizes the marker color of the last data point.

If the last data point is either the high data point or low data point, then the priority will be given to lastPointColor property.

Defaults to null.

@override
 Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
       child: SfSparkAreaChart(
     marker: SparkChartMarker(displayMode: SparkChartMarkerDisplayMode.all),
     lastPointColor: Colors.red,
      )
    ),
 );
}

Implementation

final Color? lastPointColor;