I have used finplot as a widget in layout - it works very well:
self.tab1.fplt_widget = pg.PlotWidget(
plotItem=fplt.create_plot_widget(self.window())
)
What I'd like to do is use the above widget, but also have multiple axes, ie:
ax, ax1 = fplt.create_plot_widget(self.window())
How would this work?