hey luke,is there an easy way to hide the 'ROI' and 'Norm' buttons of the imageView (for example if you want to export the scene)?
is it possible to hide the histogramm and only to show the labeled colorbar (similar to the matpoltlib-images)?
import pyqtgraph as pgpg.mkQApp()win = pg.GraphicsLayoutWidget()vb = win.addViewBox()vb.setAspectLocked()grad = pg.GradientEditorItem(orientation='right')win.addItem(grad, 0, 1)img = pg.ImageItem()vb.addItem(img)win.show()def update():lut = grad.getLookupTable(512)img.setLookupTable(lut)grad.sigGradientChanged.connect(update)import numpy as npimg.setImage(np.random.normal(size=(100,100)))