I'm displaying a simple 2D Line Plot in ILNumerics using a plot cube. I would like to be able to fix and save the current X- and Y-Axis limits after the user zoomed into the graph. Hence, I tried to receive the upper and lower limits of the axes via:
var xMin = plotCube.Axes.GetLimits().XMin
var xMax = plotCube.Axes.GetLimits().XMax
But these values are wrong (-3.40282347E+38 (xMax) and 3.40282347E+38(xMin)).
How can I retrieve the current max and min values of the axes? How can I set the limits when creating a new plot cube?