lineColor property

Color? lineColor
final

Color of the track line.

Defaults to null.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
          trackballBehavior: TrackballBehavior(enable: true, lineColor: Colors.red),
       ));
}

Implementation

final Color? lineColor;