borderWidth property
Border width of the axis label.
Defaults to 0.
Widget build(BuildContext context) {
  return Container(
    child: SfCartesianChart(
      primaryXAxis: NumericAxis(
        borderWidth: 2,
      )
    )
  );
}
Implementation
final double borderWidth;