QCustomPlot Discussion and Comments

How to display an array of plotReturn to overview

Hello,

I have been trying to generate a set of 10 plots in a window using qscrollarea without success. My objective is to show 10 different signals in parallel, not one over another. Can anyone give me any suggestions on how to do this?

PS:
I tried help from this sites:
http://stackoverflow.com/questions/13819340/qscrollarea-with-multiple-qwidgets-only-shows-empty-box
http://stackoverflow.com/questions/6566027/how-to-create-a-scrollable-qvboxlayout
and they did not work.

Can't you just draw them at a different yAxis offset? You take the Y value and add (or subtract) a y offset from that value. You can then enlarge the graph as much as you want and use a QScrollbar/QScrollArea to scroll up and down.

Thank you for your help.
That works really fine.