BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Xamarin.Forms.Forms.ViewInitialized += (sender, e) => { if (!(e.NativeView is SfChart)) return; (e.NativeView as SfChart).Touch += (obj, args) => ((SfChart) obj).RequestDisallowInterceptTouchEvent(true); }; |
Sample:
Please let us know if you require further assistance on this.
Thanks,
Yuvaraj P
Thanks Yuvaraj,
That works nicely - just a minor correction for other readers: Make sure you insert 'parent' into the code fragment listed:
((SfChart) obj).Parent.RequestDisallowInterceptTouchEvent(true);