ggplotly removes the legend of a geom_line plot using ggplot.
See e.g. below:
library(plotly)
g <- ggplot(iris)
g = g + geom_line(aes(x = Sepal.Length, y = Sepal.Width, color = Species), size = 0.05)
g # Here is a legend
(gg <- ggplotly(g)) # Legend has now been removed.
Any ideas how to get back the legend?
I am using plotly_2.0.19 and ggplot2_2.0.0.9000.
