(self, visible=True)
| 609 | self.update_fit_plots(visible=bool(change["value"])) |
| 610 | |
| 611 | def update_fit_plots(self, visible=True): |
| 612 | for v in self.plot_fit_obj: |
| 613 | v.set_visible(visible) |
| 614 | lab = v.get_label() |
| 615 | if lab != "_nolegend_": |
| 616 | v.set_label(lab.strip("_")) |
| 617 | self._update_canvas() |
| 618 | |
| 619 | def plot_experiment(self): |
| 620 | """ |
no test coverage detected