I have tried calling self.setStyleSheet("background: transparent; border: transparent;") on a QGraphicsView, but it still leaves a 1 pixel border on the top edge. I have also tried replacing border: transparent; with border-style: none;, but it didn't work either.

Here is a screenshot of the problem:

Problematic line

What command will fully remove the border from the QGraphicsView?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You can use one of the following css rule:

graphicsView.setStyleSheet("border-width: 0px; border-style: solid")

or

graphicsView.setStyleSheet("border: 0px")

Your border should disappear.

import sys
from PyQt4.QtGui import *

class Ui(QWidget):

    def __init__(self, parent=None):
        QWidget.__init__(self, parent)

        graphicsView = QGraphicsView()
        graphicsView.setStyleSheet("border: 0px")

        grid = QGridLayout()
        grid.addWidget(graphicsView)

        self.setLayout(grid)

app = QApplication(sys.argv)
ui = Ui()
ui.show()
sys.exit(app.exec_())

Here is the widget with the default style:

http://i.stack.imgur.com/gpwaW.png

And now the widget with the style applied:

http://i.stack.imgur.com/A8K4u.png

link|improve this answer
Your example has the same problem. I've updated the question with a screenshot. – D K Sep 6 '11 at 23:00
1  
The example I provided is working on Mac Os X and Windows, what version of Qt / PyQt are you using? I'm on PyQt Qt 4.7.3 and 4.8.3. From what I see on your screenshot, you already have a style taking over your window, are you sure it is not overriding your stylesheet? – Kel Solaar Sep 7 '11 at 7:17
I am using Qt 4.7.2 on Kubuntu 11.04. The fancy window color is just my system theme; the problem occurs even when using the default theme. – D K Sep 7 '11 at 20:51
Does the graphicsView display any border style override at all? for instance something like that: graphicsView.setStyleSheet("border: 8px solid red;") – Kel Solaar Sep 7 '11 at 20:56
That works perfectly. – D K Sep 7 '11 at 22:57
show 3 more comments
feedback

If the QGraphicsView is the top level window, try:

self.setContentsMargins(QMargins())

If not, you call the same function on every layouts and widgets (the function is defined in both classes) between the QGraphicsView and the top level window.

PS: QMargins() is part of QtCore, and when its constructor is called without any parameters, the four margins are set to 0.

link|improve this answer
Useful tip, but it isn't removing the line. – D K Sep 7 '11 at 0:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.