dashboard
cloud.dashboard
Functions
Name | Description |
---|---|
panel_dashboard | Start a Panel server with the provided app and return an iframe that enables |
panel_dashboard
cloud.dashboard.panel_dashboard(
app,*,
=True,
full_screen_link='Dashboard - TileDB',
title=False,
verbose=70,
vh_delta )
Start a Panel server with the provided app and return an iframe that enables viewing the app in Voila. This wrapper avoids issues with reactive Panel apps in Voila.
Parameters
Name | Type | Description | Default |
---|---|---|---|
app | Any | The Panel app to serve. | required |
full_screen_link | bool | Include a link to the full screen view, defaults to True. | True |
title | Title for the Panel server, defaults to “Dashboard - TileDB”. | 'Dashboard - TileDB' |
|
verbose | bool | Enable verbose logging, defaults to False. | False |
vh_delta | int | The vertical height delta for the iframe in px. This value is subtracted from 100vh to set the height of the iframe. | 70 |
Returns
Name | Type | Description |
---|---|---|
Any | A Panel HTML pane containing an iframe that displays the app. |