(self)
| 161 | return themeComboBox |
| 162 | |
| 163 | def createAnimationBox(self): |
| 164 | animationComboBox = QComboBox() |
| 165 | |
| 166 | animationComboBox.addItem("No Animations", QChart.NoAnimation) |
| 167 | animationComboBox.addItem("GridAxis Animations", QChart.GridAxisAnimations) |
| 168 | animationComboBox.addItem("Series Animations", QChart.SeriesAnimations) |
| 169 | animationComboBox.addItem("All Animations", QChart.AllAnimations) |
| 170 | |
| 171 | return animationComboBox |
| 172 | |
| 173 | def createLegendBox(self): |
| 174 | legendComboBox = QComboBox() |