Johannes,
I can confirm what Brian writes ... I have used gtkdatabox to update that frequently and I think his application (brp-pacu) does some updating in semi-real time. The nice thing about gtkdatabox is that you set the pointers to your x/y data once and their element size and you only need to 'refresh' to update the plot ... really fast and nifty. This is how to do a refresh (axis is the thing you need to refresh) : gtk_widget_queue_draw (GTK_WIDGET (axis)); Further you can copy the zoom functionality and apply it to sliders which are logarithmically stepped ... that shouldn't be a problem. If you want to change the size of the vector you are plotting, you will re-call the function which sets up the pointers and the size. Look at this page in the documentation : api/html/gtkdatabox__lines_8h.html#ae54c4690b9bb71b079196b370995a394 Matt On 11/11/2012 06:34 PM, Brian Phelps wrote: I have never tried this but you could do something similar to what the lisajous example does (update the data every 50 msecs or so) and also update the range too. |