Can one set Configuration Options using PlotlyJS.jl?

Looks like there was a special data structure introduced for this purpose. This works with PlotlyJS 0.16:

julia> options = PlotConfig(plotlyServerURL="https://chart-studio.plotly.com", showLink=true)

julia> p=plot(rand(10, 4), layout, config=options)
1 Like