(self)
| 171 | return animationComboBox |
| 172 | |
| 173 | def createLegendBox(self): |
| 174 | legendComboBox = QComboBox() |
| 175 | |
| 176 | legendComboBox.addItem("No Legend ", 0) |
| 177 | legendComboBox.addItem("Legend Top", Qt.AlignTop) |
| 178 | legendComboBox.addItem("Legend Bottom", Qt.AlignBottom) |
| 179 | legendComboBox.addItem("Legend Left", Qt.AlignLeft) |
| 180 | legendComboBox.addItem("Legend Right", Qt.AlignRight) |
| 181 | |
| 182 | return legendComboBox |
| 183 | |
| 184 | def createAreaChart(self): |
| 185 | chart = QChart() |