borderWidth property

double borderWidth
final

Customizes the border width of the plot band. To make border visible for plot band, need to set both the border color and border width.

Defaults to 0.

@override
Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
      child: SfSparkAreaChart(
     trackball:
         SparkChartTrackball(borderWidth: 2)
        )
     ),
  );
}

Implementation

final double borderWidth;