borderWidth property

double borderWidth
final

Customizes the border width of each rectangular column segment. To render the border, both the border width and border color property needs to be set.

Defaults to 0

@override
Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
       child: SfSparkWinLossChart(
     borderWidth: 4
      )
    ),
  );
}

Implementation

final double borderWidth;