Graph Control in WPF
WPF
2
Posts
2
Posters
0
Views
1
Watching
-
In my project i need to create a graph which works same as an oscilloscope . which will be the best graph control that i can use here .... thanks in advance
"best" is always a subjective value. Get the WPF toolkit for Visual Studio and use the Chart. Change the internal to a LineSeries. You need to keep your x axis values fixed while changing the y value in the array you use to populate the ItemsSource of the LineSeries. So keep deleting item[0] and add the new point to the end of your List.