03-17-2012 01:54 PM
I am using my new Measurement Studio 2010 and VB.Net . After sending data to a Waveform Graph, I want to reset the range (minimum and maximum) of the X and Y axis when the user clicks a button. I think the help is telling me that I can't use what I am previously used to in Measurement Studio and that I have to use a constructor to set the ranges. I see the Range constructor Range Constructor (Double, Double) but I don't understand the code sample given for VB. Any direction would be appreciated.
Solved! Go to Solution.
03-17-2012 01:56 PM
Graph that is!
03-17-2012 02:06 PM
Necessity is the mother of invention!
Graph1.XAxes(0).Range = New Range (0,100)
Beautiful. Thank you for listening Mother.