Hello,
Using the current version of Syncfusion (V22.1.37) for Blazor WASM I'm trying to add a point to a column chart by clicking on a concrete point in the chart.
So far all I get is the X and Y coordinate where the user clicks on the chart with this code:
public void OnPointClick(ChartMouseEventArgs args)
{
ChartDataPointInfo pointInfo = new ChartDataPointInfo();
pointInfo.X = args.MouseX;
pointInfo.Y = args.MouseY;
}
But is there a simpler way to add a point to a serie just by clicking in the chart? Do I have to "translate" this coordinates to the corresponding values of the serie?
Thank you for your help.