borderWidth property
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: SfSparkBarChart(
borderWidth: 3
)
),
);
}
Implementation
final double borderWidth;