08-27-2008 10:43 PM
Hello,
I am using Measurement Studio 8.5 and C# in Visual Studio 2008.
I have a plot which data is between 40~50. And I have an Upper Control Limit of 80 and Lower Control Limit of 30. I want to draw two lines in the plot to represent the Upper and Lower control limits.
What I do is to plot two xyCursors whose SnapMode is set to Fixed:
xyCursorUCL.YPosition = 80;
xyCursorLCL.YPosition = 30;
When yAxis Mode is set to AutoScaleLoose, the plot only shows between 40~50, so that the xyCursors are not shown in the plot area.
Anybody knows how to keep the xyCursor in the plot area while the yAxis AutoScale feature is still on?
Thanks,
JSInc
08-28-2008 11:54 AM
Hi JSInc,
If you set the plot to autoscale then it will only show the points where data actually is, you need to manually set the Y min and max if you want to view a wider range than that.
09-03-2008 02:26 PM
Hello David,
Thank you for your explaination. In this case, I can live with what it is.
Best regards,
JSInc