What is the keyword to turn off the interactivity or responsiveness in the plotly backend for the Plots.jl package in Julia?
For reference, I am using Pluto and while the interactivity is great, I am doing some very dense scatter plots (>1000 points) with a great number of subplots (>100). The default hover and interactivity features end up consuming a lot of memory when the HTML is displayed (with the saved HTML files themselves being over 50 MB in size). This causes Chrome/Safari to crash.
I am looking for a way to turn off the interactivity. For various reasons (documented here and here) I am stuck with using the plotly backend (I figured out how to save to PDF, but I also want to save to HTML; albeit with interactivity turned off).
I tried keywords like static=true or responsive=false etc. but it didn't work. Using hover=false turned off the tooltip but not the rest of the interactivity.
The feature currently doesn't exist but there is an option for Pluto notebooks using the
PlutoPlotlypackage directly.This question is cross posted, with original answer given here: https://discourse.julialang.org/t/turn-off-interactivity-responsiveness-in-plotly-plotlyjs-backend/97225