5

I am looking for some simple line chart solution. I need that for my app written in wpf that is part of a final college exam. I was trying to find some, but I have found only paid solutions and because I need that just for this purpose I dont want to pay for it.

The only additional requirement is that it must work with real time data, min 1 update per sec (brain affective data which im obtaining from neuroheadset).

BblackK
  • 524
  • 1
  • 8
  • 25

2 Answers2

4

You might try OxyPlot. It's free, certainly fast enough for what you want, and fairly easy to use.

juan.facorro
  • 9,791
  • 2
  • 33
  • 41
Govert
  • 16,387
  • 4
  • 60
  • 70
  • I tried it It looks nice, but has no real time update, a show stopper! – JvdBerg Apr 15 '15 at 07:22
  • 9
    Oxy plot is a good option, but it did not filled my needs, so I made this https://github.com/beto-rodriguez/Live-Charts – bto.rdz Sep 19 '15 at 17:24
  • 2
    In my own experience, I found LiveCharts to be more MVVM-friendly than OxyPlot (in the latest version, you apparently can't use dynamic resources). LiveCharts also seems to support more graph types and overall looks cleaner. –  Jun 04 '16 at 14:27
1

WPF Toolkit has a nice free easy to use chart control available here.

And here's a good demo project on codeproject.

safetyOtter
  • 1,430
  • 14
  • 26