lineDashArray property
Dashes of the track line.
Defaults to null
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
trackballBehavior: TrackballBehavior(enable: true, lineDashArray: [10,10]),
));
}``
Implementation
final List<double>? lineDashArray;