(self)
| 3390 | self.color_ramp_select.addItems(['tab10', 'tab20']) |
| 3391 | |
| 3392 | def plot(self): # Plotting Function |
| 3393 | x = self.x_select.currentText() |
| 3394 | y = self.y_select.currentText() |
| 3395 | color_column = self.color_select.currentText() if self.color_select.currentText() != "None" else None |
| 3396 | color_ramp = self.color_ramp_select.currentText() if self.color_ramp_select.currentText() != "None" else None |
| 3397 | log_x = self.log_x_checkbox.isChecked() |
| 3398 | log_y = self.log_y_checkbox.isChecked() |
| 3399 | self.plot_window.plot_custom(x, y, log_x, log_y, color_column, color_ramp) |
| 3400 | |
| 3401 | def save_to_csv(self): |
| 3402 | if self.polygon_checkbox.isChecked(): |
nothing calls this directly
no test coverage detected