How to change scrollbar position from next to header
to below header?
Any ideas how to implement this are appreciated.
How to change scrollbar position from next to header
to below header?
Any ideas how to implement this are appreciated.
You can try below hack:
QTableView
in a QVBoxLayout
horizontalHeader()
QVBoxLayout
on top of QTableView
You can do this in qss (I assume your header has 50px height with a blue color) :
QScrollBar::sub-line:vertical {
padding-top: 50px;
height: 20px;
background-color: blue;
}
QScrollBar::vertical {
margin-top: 50px;
padding-top: 20px;
}