plotly.R
plotly.R copied to clipboard
ggplotly: dynamicTicks=TRUE with scale_*_log10()
When using ggplotly with a log-scale plot, the tick labels will be the exponent, not the actual value.
df = data.frame(x=10^(1:10), y = 10^(1:10))
plot = ggplot(df, aes(x, y)) + geom_line() + scale_x_log10() + scale_y_log10()
plot
ggplotly(plot, dynamicTicks=T)
Hi,
I have the same problem. Any update in this bug?
Thank you very much!
Hi @cpsievert , sorry for my insistence. Any news about this issue? Thanks
This is still an issue... Any news on this?
I also still have this issue. Did anyone find a workaround for this?