wx4stg / pyxlma-explorer

HoloViz powered interactive display for Lightning Mapping Arrays
0 stars 1 forks source link

Non-datashaded points do not automatically re-render after being filtered #5

Closed wx4stg closed 3 months ago

wx4stg commented 4 months ago

This seems to result from pn.bind not monitoring non-panel classes: https://github.com/wx4stg/pyxlma-explorer/blob/36c1b7776e44b4b3ee601b3200cf27326cb7c48f/lma_data_explorer.py#L591

datashade_switch is monitored because it's a panel button, but self.filter_history is a numpy array and therefore not tracked... I think this is what Param is supposed to handle??????

wx4stg commented 3 months ago

fixed by 137f4e5