6

How can I make a real time graph using wxWidgets in Windows?

canolucas
  • 1,482
  • 1
  • 15
  • 32
ashamim
  • 63
  • 1
  • 1
  • 3

1 Answers1

8

You can try some of the wxWidget specific controls linked to below. I have only ever worked with wxMathPlot which fitted my needs but is not necessarily fast - it depends on your time requirements for real time and amount of data you are trying to plot.

wxMathPlot

wxPlot & plplot

wxChart

wxFreeChart

gpPanel - seems to have forked from wxMathPlot

There are probably others too, and you could even write your own using any number of the 2D drawing controls that are available, or write your own custom control.

tinman
  • 6,348
  • 1
  • 30
  • 43
  • I use wxMathPlot and find it plenty fast - a scrolling oscilloscope style plot with thousands of points and tens of new points per second. – ravenspoint Aug 01 '11 at 14:52
  • thanks alot ... I'll have a look at all of these and will come back to u if i have any more questions ... – ashamim Aug 02 '11 at 08:10