canShowMarker property
Toggles the visibility of the marker in the tooltip.
Defaults to true
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
tooltipBehavior: TooltipBehavior(enable: true, canShowMarker: true),
));
}
Implementation
final bool canShowMarker;