When I try to set a customized width for my boxplot in ggplot, it works fine:
p=ggplot(iris, aes(x = Species,y=Sepal.Length )) + geom_boxplot(width=0.1)
But when I try to use ggplotly, the width (and the hjust) is default:
p %>% ggplotly()
What am I doing wrong or is this a bug in ggplotly?