Andrew Huang

Results 15 comments of Andrew Huang

Seems like holoviews / geoviews ![image](https://user-images.githubusercontent.com/83971150/135644318-e6376fd0-669b-49f0-8a57-af952bc72c86.png)

This is a minimal example: ``` import geoviews as gv import cartopy.crs as ccrs gv.extension("bokeh") gv.tile_sources.CartoDark() * gv.Points(([-88, -95, -100], [40, 50, 60]), crs=ccrs.PlateCarree()) ``` This takes 24 seconds to...

Yep I have tried that. https://github.com/holoviz/geoviews/issues/529#issuecomment-934661990 geoviews may implement their own solution in the near future.

``` import panel as pn pn.extension() def reset(event): file_input.disabled = False progress.active = False file_input = pn.widgets.FileInput() progress = pn.widgets.Progress(active=False) file_input.jscallback( args={"progress": progress}, value=""" progress.active = true; source.disabled = true;...

I was trying to update the css with style, but `pn.indicators.Progress(style={'height': 5})` doesn't work although https://panel.holoviz.org/reference/indicators/Progress.html indicates its a param