10-26-2008 04:32 PM
Hi
I have an array of 1000 samples that i want to show in a waveformplot.
the samples are taken at a 5 µs interval.
Now the x axis shows a range of 0 to 1000 (this is the number of samples in my array. plotted with waveformGraph1.PlotY(samplearry);
I want the axis to show the real range of 5 ms lables ( 1000 samples at 5 µs interval). instead of just the sample number. (0..1000)
How do i do that with the waveformplot ?
Johan
10-27-2008 03:54 AM
solved
i createted a class inheriting from FormatString where i did override the FormatDouble method.
I think this is the rifgt choice.