Measurement Studio for .NET Languages

cancel
Showing results for 
Search instead for 
Did you mean: 

Plot disappear, is that a bug in 8.0.1?

I'm using WaveformGraph display a plot, I set the increment = -1, e.g.: plot.PlotY(data, start, -1);
When I zoom in several times, the plot disappeared, but when I move the graph, it appeared in some specialy area. I promise it's not a operation mistake, because I have another plot (increment = 1) as reference,  I think it's probably a bug. If it is, can you fixed it quickly?
0 Kudos
Message 1 of 10
(5,820 Views)
Is there nobody can answer my question? It is a big problem. help me! Please!
0 Kudos
Message 2 of 10
(5,799 Views)
Is that a visual studio code? or you can submit the code here to give us more information, and we can help you with it.
0 Kudos
Message 3 of 10
(5,750 Views)
Sure. You can create a new project, drag a waveformGraph to form, and paste this code. And then zoom in by interaction mode (Shift + mouse). There's no other code, the demo can show you the problem.
 
            double[] a = new double[10000];
            for(int i = 0; i < 10000; i++)
            {
                a[i] = i;
            }
            this.waveformPlot1.PlotY(a, 10000, -1);
 
            // for compare
            WaveformPlot plot = new WaveformPlot();
            this.waveformGraph1.Plots.Add(plot);
            plot.PlotY(a, 0, 1);
           
0 Kudos
Message 4 of 10
(5,741 Views)
What revision of Visual Studio are you using now?
 
0 Kudos
Message 5 of 10
(5,706 Views)

 Could you upload you whole project file to the forum.

Also you can email me your project file. Mail to liping.zhao@gmail.com

Thanks!

0 Kudos
Message 6 of 10
(5,699 Views)

I use VS.net 2005. Just zoom in about  10 times, you will see the problem. I found some data, you just zoom in 3 times, it happened.

帖子被Guangtao在08-23-2006 08:35 PM时编辑过了

0 Kudos
Message 7 of 10
(5,683 Views)
I have run your code and what you said reoccurred.
 
May be it's a bug of MS 8.0.1. I will give you a final conclusion as soon as possible.
 
Liping Zhao
Application Engineer
National Instruments
0 Kudos
Message 8 of 10
(5,673 Views)
Thank you. Is it possible fix it and then publish a patch or new version this year?
0 Kudos
Message 9 of 10
(5,589 Views)
This was reported to R&D (# 40N4MI95) for further investigation.  I
 
 believe it will be fixed soon.
 
Thanks for the feedback!
 
Liping Zhao
Applications Engineer
National Instruments
0 Kudos
Message 10 of 10
(5,585 Views)