Hi Pat,
Based on your information, you can extend the ChartTooltipBehavior class, override the DoubleTap method, and obtain the touch position within that method to customize the code as needed. The code snippet is provided below.
public class BehaviorExt : ChartTooltipBehavior { protected override void DoubleTap(float pointX, float pointY) { base.DoubleTap(pointX, pointY); // Customize your code here } } |
<chart:SfChart.ChartBehaviors> <local:BehaviorExt></local:BehaviorExt> </chart:SfChart.ChartBehaviors> |
Additionally, if you need any further assistance, please let us know.
Regards,
Nitheeshkumar