Wraps the output in a Panel component.
(self, **kwargs)
| 847 | return self.holoviews() if self._dmap else self.panel(**self._kwargs) |
| 848 | |
| 849 | def panel(self, **kwargs): |
| 850 | """ |
| 851 | Wraps the output in a Panel component. |
| 852 | """ |
| 853 | return pn.panel(self._callback, **kwargs) |
| 854 | |
| 855 | def widgets(self): |
| 856 | """ |
no outgoing calls