10-20-2009 10:05 PM
I have a webformgraph to show a curve with 1 hour data in every second that means it has 3600 points to show. It reads the data from a file. When there is a missing value, i replace the point value by -1. So it shows the curve fall to base line on that point and the client does not accept it. Now I want to show nothing on that point. Is it possible to show nothing for missing value in the curve? If there are any other solution plz let me know.
I tried it using NaN but it does not give me the solution.
using -1 value for it's missing value and it shows like the following graph
I tried it using NaN and it shows like
But I am looking for something like following
I am using VS2005, Measurement Studio 8.5, ASP.Net with C#
Thank you,
Mamun
Solved! Go to Solution.
10-21-2009 02:24 AM
It looks to me like you have not set the ProcessSpecialValues property on the plot to true so that plotting a NaN gives the 'break' appearance. You should do something like this for your graph:
waveformGraph1.Plots[0].ProcessSpecialValues = true ;
waveformGraph1.Plots[1].ProcessSpecialValues = true ;
10-21-2009 03:02 PM