I had an issue with Tables with lots of columns and solved it with help from This forum answer.
I now have case where I have subplots - with a scatter at the top and a table below it.
I’d like to have my slider work just on my table and not impact the scatter at all.
As sliders are applied at the figure layout level - is there something I have to do with the slider step args or something so it only targets the table and doesn’t try to update the scatter above it?
If you are performing table restyle, then yes it is possible to act the slider only for fig.data[1].
In args dict where you are updating one or more table atributes, insert [1], to let plotly.js “know” that slider is connected to the trace 1.