Measurement Studio for .NET Languages

cancel
Showing results for 
Search instead for 
Did you mean: 

Wpf waveform graph

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.

0 Kudos
Message 1 of 2
(1,675 Views)

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.)

~ Paul H
0 Kudos
Message 2 of 2
(1,634 Views)