The legend position for plots produced with `ggplotly()` doesn't reflect the position specified in ggplot, e.g. `theme(legend.positon="bottom")`. on 2022-09-22 this issue is visible on the plotly docs site entry for [Change the legend position](https://plotly.com/ggplot2/legend/#change-the-legend-position)  ```r library(plotly) library(ggplot2) ToothGrowth$dose <- as.factor(ToothGrowth$dose) p <- ggplot(ToothGrowth, aes(x=dose, y=len, fill=dose)) + geom_boxplot() p + theme(legend.position="bottom") ggplotly(p) ```