axisLineWidth property

double axisLineWidth
final

Customizes the width of the axis line.

Defaults to 2.

@override
Widget build(BuildContext context) {
 return Scaffold(
   body: Center(
       child: SfSparkWinLossChart(
     axisLineWidth: 4,
     data: <double>[18, 24, 30, 14, 28],
      )
    ),
  );
}

Implementation

final double axisLineWidth;