Plot multiple curves with qwt

185 views Asked by At

I want to do a few things that look like this picture with qwt.

enter image description here

Several curves in a plot and with each curve that can overflow on the other curves. My only idea is to put several broods in a plot and apply offsets. But this idea is difficult to maintain I find.

Do you have any ideas?

1

There are 1 answers

0
K13 On

In Qwt, you can assign a curve to either the left or right axis. When you need to visualize more than two curves stacked on top of each other, you have to use offsets. You could also try to subclass the QwtScaleDraw class.