(self, *events)
| 723 | self._layout.loading = False |
| 724 | |
| 725 | def _refresh(self, *events): |
| 726 | if not self.statusbar.live_update: |
| 727 | return |
| 728 | self._plot() |
| 729 | with param.parameterized.discard_events(self): |
| 730 | self.code = self.plot_code() |
| 731 | self._code_pane.object = f"""```python\n{self.code}\n```""" |
| 732 | |
| 733 | @property |
| 734 | def _var_name(self): |