Hi all!
I use the NI waveform graph control (7.1) to plot simple but large
arrays of doubles (e.g. 1.000.000 data points with .PlotY(array):
double[] MyArrayD = new double[1000000];
<fill array with data>
oMyGraph.PlotY( MyArrayD );
The waveform graph control allocates a lot of memory and even
though I destroy the array and clear the graph (oMyGraph.Clear()), the
memory won't be released. Also the oMyGraph.Dispose() method doesn't
free memory.
Is this a bug or deos anybody know a workaround?
Best regards,
Andreas