You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plot_ly(iris, x = ~Sepal.Length, y = ~Sepal.Width, color = ~factor(Species), size = ~Petal.Length)
However, the following code results in the legend sizes being weird huge markers, and it's a reason enough to just suppress the legend altogether
myiris <- iris[!duplicated(iris$Species), ]
plot_ly(myiris, x = ~Sepal.Length, y = ~Sepal.Width, color = ~factor(Species), size = ~Petal.Length)
@cpsievert told me previously on Twitter that this might be a plotly.js bug. I don't know how to translate this into a JS issue, so if it's indeed a plotly.js bug could you please open the corresponding issue on their repo?
The following line works nicely
However, the following code results in the legend sizes being weird huge markers, and it's a reason enough to just suppress the legend altogether
@cpsievert told me previously on Twitter that this might be a plotly.js bug. I don't know how to translate this into a JS issue, so if it's indeed a plotly.js bug could you please open the corresponding issue on their repo?
Potentially related to #705
The text was updated successfully, but these errors were encountered: