Hi Rodolphe,
Thank you for the update.
We have analysed your reported query. You can achieve your requirement with the help of below code snippet.
Code snippet [C#]:
private void SfChart_MouseMouse(object sender, MouseButtonEventArgs e)
{
SfChart SER = e.Source as SfChart;
Point pt = e.GetPosition(SER.Series[0]); // To get exact position by Chart instance as a replacement for by Series.
YPoint = (SER.PointToValue(SER.SecondaryAxis, pt));
XPoint = (SER.PointToValue(SER.PrimaryAxis, pt));
var date = DateTime.FromOADate(XPoint);
}
And the codes suggested by you is not appropriate solution for this requirement, since this solution may be fail in case of multiple axes with chart.
Query 2: Documentation issue.
Thank you for your feedback. We will modify the mentioned page in our documentation and we will update the modified details in our upcoming release.
Please let us know if you require further assistance on this.
Thanks,
Karthikeyan V.