width property
Customizes the width of the trackball line.
Defaults to 2
.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SfSparkAreaChart(
trackball: SparkChartTrackball(
width: 5,
)
)
),
);
}
Implementation
final double width;