Hi PIETTADEMA,
Thanks for contacting Syncfusion support.
We have analyzed your requirement based on provided information and you can also override PointToValue() of chart in UWP as like WPF.
Please refer the below codes of PointToValue() in UWP( VB.Net and C#),
Code Snippet[C#]
| public class SfChartExt: SfChart { public override double PointToValue(ChartAxis axis, Point point) { return base.PointToValue(axis, point); } } |
Code Snippet[VB]
| Public Class SfChartExt Inherits SfChart Public Overrides Function PointToValue(ByVal axis As ChartAxis, ByVal point As Point) As Double Return MyBase.PointToValue(axis, point) End Function End Class |
We have prepared a simple sample for positioning chart annotation based on mouse click point using PointToValue() in chart UWP.
The reference samples can be downloaded from the below location,
Please let us know if you have any concerns.
Regards,
Durgadevi S