08-24-2020 09:08 AM
Just want to know whether NI Measurement studio WPF tool will have Waveform graph control, if not how to use waveform graph control in WPF application. Need to work for Spectrum FFT chart and windowing on the WPF c#, help me with this.
08-26-2020 02:51 PM
The most common way to show data in a Graph
is by setting the DataSource
property:
Spectrum<double> spectrum = ...;
graph.DataSource = spectrum;
(Although it is not called out specifically in the How to: Plot and Chart article, the Spectrum<TData>
type is one of the data collections supported by the WPF graph.)