I'm using OxyPlot in C# to plot a chart based on a finite set of data points, not a function. The resultant chart from OxyPlot has a smooth, continuous curve covering the whole range of points.
My goal is that, given some value y, find the corresponding x value. I want to do that by utilizing the chart plotted with OxyPlot. Are there any straightforward ways (perhaps using some OxyPlot features) to do that?
Note: The y value is determined in the back-end based on some calculations——it's not from the user. The few resources I found online suggested using a mouse click event, but unfortunately that wouldn't work for my case.