I have a 3D plot made using PlotlyJS.jl. This is done using Jupyter notebooks. When the plot is saved to a png it is only saved as a snapshot of the position of the plot at the time of saving.
What is the best way to save a plot made with PlotlyJS.jl in order to be able to have the plot be interactive on a webpage? I.e. a github ReadMe or a Medium article? Does PlotlyJS support this?
Since interactive PlotlyJS images are ultimately JavaScript, and GitHub doesn’t allow JavaScript in their Markdown README.md files when displaying, I guess the answer is no. (There is an old SO explanation here: Embed JavaScript in GitHub README.md - Stack Overflow)
Some alternatives might be to use GitHub Pages as a linked web site; or, demonstrate the interactivity with an animated gif (see this thread: Animation using PlotlyBase)