axisLineColor property
Customizes the color of the axis line. Colors.transparent can be set to axisLineColor to hide the axis line.
Defaults to null.
@override
Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
       child: SfSparkAreaChart(
     axisLineColor: Colors.red,
     data: <double>[18, 24, 30, 14, 28],
      )
    ),
  );
}
Implementation
final Color? axisLineColor;