What's the best way to implement charts in WPF
What's the best way to implement charts in WPF .net core? My need is very simple : plot points with live data on datetime axis. Mscharts used to do it fine but seems can't add reference to it in .net 7 and above.
3 Replies
I use OxyPlot for that
Is it good at plotting live data in points from observable collection?
It doesn't know about ObservableCollection directly -- you have to mutate the set of points for it to draw, then call a method to get it to redraw, but that's fine for real-time data