markerSettings property
Settings to configure the marker of trendline.
Widget build(BuildContext context) {
return SfCartesianChart(
series: <CartesianSeries<ChartData,String>>[
LineSeries<ChartData,String>(
trendlines: <TrendLine>[
Trendline(
markerSettings: MarkerSettings(isVisible: true)
)
]
)
]
);
}
Implementation
final MarkerSettings markerSettings;