| 148 | return dataTable |
| 149 | |
| 150 | def createThemeBox(self): |
| 151 | themeComboBox = QComboBox() |
| 152 | |
| 153 | themeComboBox.addItem("Light", QChart.ChartThemeLight) |
| 154 | themeComboBox.addItem("Blue Cerulean", QChart.ChartThemeBlueCerulean) |
| 155 | themeComboBox.addItem("Dark", QChart.ChartThemeDark) |
| 156 | themeComboBox.addItem("Brown Sand", QChart.ChartThemeBrownSand) |
| 157 | themeComboBox.addItem("Blue NCS", QChart.ChartThemeBlueNcs) |
| 158 | themeComboBox.addItem("High Contrast", QChart.ChartThemeHighContrast) |
| 159 | themeComboBox.addItem("Blue Icy", QChart.ChartThemeBlueIcy) |
| 160 | |
| 161 | return themeComboBox |
| 162 | |
| 163 | def createAnimationBox(self): |
| 164 | animationComboBox = QComboBox() |