axisLineWidth property
Customizes the width of the axis line.
Defaults to 2
.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfSparkAreaChart(
axisLineWidth: 4,
data: <double>[18, 24, 30, 14, 28],
)
),
);
}
Implementation
final double axisLineWidth;