You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to make a video tutorial from the FastGridTemplate Reference Guide. I see a few things that could be improved so that it would be easier for the user to actually get something working in practice.
Solution
Use pn.bind api instead of pn.depends. The bind api is more intuitive to data scientists. And it provides a better separation between the normal data science code and the panel specific code.
Use the accent_color (pink/ red) instead of blue
wrap the DynamicMap into a Column with sizing_mode="stretch_width" in order for the "maximize" functionality associated with a grid cell to work.
MarcSkovMadsen
changed the title
Improve FastGridTemplate reference example
Make FastGridTemplate reference example more immediately useful
Jul 27, 2021
I'm trying to make a video tutorial from the FastGridTemplate Reference Guide. I see a few things that could be improved so that it would be easier for the user to actually get something working in practice.
Solution
pn.bind
api instead ofpn.depends
. Thebind
api is more intuitive to data scientists. And it provides a better separation between the normal data science code and the panel specific code.DynamicMap
into a Column withsizing_mode="stretch_width"
in order for the "maximize" functionality associated with a grid cell to work.Something like the below would do the job
The text was updated successfully, but these errors were encountered: