borderWidth property
Border width of the chart title.
Defaults to 0
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
title: ChartTitle(
text: 'Chart Title',
borderWidth: 1
)
));
}
Implementation
final double borderWidth;