Hi, I would like rotate HistogramLUTItem to put horizontally
My code:
/.../
view = win.addViewBox(row=0, col=0)
view.addItem(imageItem)
win.addItem(hist, row=1, col=0)
But it doesn't work, why ?
IMHO: This is not a rotation problem, but it seems that your positioning is faulty, the histogram got out of your viewport. If you code
view =
win.addViewBox(row=0, col=0)
view.addItem(imageItem)
win.addItem(hist) # default positioning
then you'll get:

So, please play with grids / layouts / viewboxes /items a little
bit more consciously... This is error prone...
Bon courage.
Jerzy Karczmarczuk
/Caen, France/