QtableWidget header background color
Solved
General and Desktop
-
Hello everyone, how to make the vertical and Extreme background color of Table Widget transparent? It looks like this:/ I want to delete the place I marked in the image
-
Is this the cornerButtonEnabled ? Do you have to disable it or else include it in your styling?
-
Is this the cornerButtonEnabled ? Do you have to disable it or else include it in your styling?
@JonB The problem is not the corner, the background color of the vertical and horizontal columns is different, so a strange different color appears exactly where I marked, but thank you
-
-
Solution is here :
self.tableWidget.setStyleSheet("""QTableCornerButton::section { background-color: 'transparent'}""")
self.tableWidget.setCornerButtonEnabled(False)thanks again @JonB