Qt will automatically add a scrollbar if the QGraphicsScene/View is too big for the current window. In your example, you would either want to move your horizontal labels inside the scene so that they get scrolled too, or you would have to subclass the scrollbar so that when it moved your label would change.

mAx