trackBorderWidth property

double trackBorderWidth
finalinherited

Width of the track border.

Defaults to 1.

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <StackedColumnSeries<SalesData, num>>[
      StackedColumnSeries<SalesData, num>(
        isTrackVisible: true,
        trackBorderColor: Colors.red ,
        trackBorderWidth: 2
      ),
    ],
  );
}

Implementation

final double trackBorderWidth;