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
It would be nice if there could be an interaction between these 2 packages
If you click on a graph , you get the details in itables or if you make a selection in itables , you get a graph visualisation in altair.
Do you think this is possible ?
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hello @tomnobelsAM , great question, thanks! That is possible indeed.
You will need to choose an "application" framework that is supported by both ITables and your graph library (e.g. Jupyter Widgets, Streamlit, Shiny for Python as far as ITables is concerned).
Then you will use either the graph state to change the content of your table, or the selected row(s) in the table to change the content of the graph.
In the documentation we have an example that updates the content of a table depending on a dropdown object:
The other way around, getting the selected rows in an ITable widget is easily done with the .selected_rows trait (use select="single" rather than select=True if you want to allow selecting only one row).
The other supported frameworks include Streamlit (which seems to support Altair plots) and Shiny for Python.
It would be nice if there could be an interaction between these 2 packages
If you click on a graph , you get the details in itables or if you make a selection in itables , you get a graph visualisation in altair.
Do you think this is possible ?
Thanks in advance
The text was updated successfully, but these errors were encountered: