onChartTouchInteractionDown property

FunnelTouchInteractionCallback? onChartTouchInteractionDown
final

Occurs when touched on the chart area.

Widget build(BuildContext context) {
   return Container(
       child: SfFunnelChart(
           onChartTouchInteractionDown: (ChartTouchInteractionArgs args){
              print(args.position.dx.toString());
              print(args.position.dy.toString());
            }
       )
    );
}

Implementation

final FunnelTouchInteractionCallback? onChartTouchInteractionDown;