enableTooltip property

bool enableTooltip
final

Enables or disables the tooltip for this series. Tooltip will display more details about data points when tapping the data point region.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
           series: <BubbleSeries<BubbleColors, num>>[
                  BubbleSeries<BubbleColors, num>(
                      enableTooltip: true,
                 ),
            ],
       ));
}

Implementation

final bool enableTooltip;