borderWidth property
Border width of the data points in the series.
Defaults to 0
.
Widget build(BuildContext context) {
return Container(
child: SfPyramidChart(
series: PyramidSeries<ChartData, String>(
borderWidth: 2
)
)
);
}
Implementation
@override
final double borderWidth;