Hello,
In Pluto notebook (this happens in VSCode too) I'm using Plots with the plotly() backend and I was trying to run the following example from the documentation:
using Plots, StatsPlotsplotly()groupedbar(rand(10,3), bar_position = :dodge, bar_width=0.7)
and got the error:
But using the default backend, gr() the plot is shown correctly. Is this normal?
Thank you
Hello, In Pluto notebook (this happens in VSCode too) I'm using Plots with the
plotly()
backend and I was trying to run the following example from the documentation:using Plots, StatsPlots
plotly()
groupedbar(rand(10,3), bar_position = :dodge, bar_width=0.7)
and got the error:But using the default backend,
gr()
the plot is shown correctly. Is this normal? Thank you