borderWidth property

double borderWidth
final

Border width of the chart title.

Defaults to 0.

Widget build(BuildContext context) {
  return SfCartesianChart(
    title: ChartTitle(
      text: 'Chart Title',
      borderColor: Colors.red,
      borderWidth: 4
    )
  );
}

Implementation

final double borderWidth;