(self, title, points, pos)
| 96 | return self.size().height() |
| 97 | |
| 98 | def show(self, title, points, pos): |
| 99 | self.setGeometry(QRectF(pos, self.size())) |
| 100 | self.tipWidget.updateUi(title, points) |
| 101 | super(GraphicsProxyWidget, self).show() |
| 102 | |
| 103 | |
| 104 | class ChartView(QChartView): |
no test coverage detected