Hi,
Thanks for your answer and apologies for the late reply. Yes what I’m looking for a way to round the data (not just for display) when a point is added or dragged on the plot via point_draw and reflect the change in the table, and allow also to edit the data in the table and reflect the changes in the plot.
I’m developing an web app in my company based on Panel and Holoview and three of the constrains are:
- to be able to fine tune the data points via both a plot and a table;
- to automatically round the value to a meaningful decimal. In the domain this app will be used for, anything beyond the second decimal is not only meaningless but as well wrong from an engineering point of view;
- sort them by the y axis automatically (because the points have only a meaning when sorted according to the y axis in this case).
I previously tried to do a two way editing between a Holoview plot and Panel Tabulator instance, with rounding the value (and sorting according to the y axis) as an intermediary step, but I could not find a proper way to do so without getting an error from Bokeh stating that the model was out of sync (I would need to find back the real error message but that’s the way I understood it).
Here is a link to the previous attempt: