plotly.R
plotly.R copied to clipboard
An interactive graphing library for R
Since I updated ggplot2 to version 4.0.0, `panel.border()` is ignored when a ggplot is passed to `ggplotly()` In older versions of ggplot2 (v3.5.2), the border appears as expected. Here is...
The following example highlights the first point from each colour group (the first "a" point and the first "b" point): ```r library(plotly) d add_trace(x=~x, y = ~x, color = ~c,...
As stated in the title, since I updated ggplot2 to version 4.0.0, theme_bw() and theme_minimal() look almost the same - the frame in theme_bw() is missing. This only happens in...
_I am opening this issue as a potential avenue for some thoughtful, respectful community discussion about the current state of the plotly R package, it's relationship and support by the...
When using the `bargroupgap` argument, the following waring is thrown: > Warning message: > 'layout' objects don't have these attributes: 'bargroupgap' > Valid attributes include: ... However the attribute clearly...
## Summary When using `facet_wrap()` with `scales = "free_x"`, the middle facets rows appear squished. ## MWE This bug is most apparent when working in Shiny contexts: ```r library(ggplot2) library(shiny)...
Hi, I'm embedding several SVG images in a ggplot, which I do via ggpath, but this is unsupported in plotly. Please, can you implement geom_GeomFromPath?
Hello! When I use **ggplot2::scale_y_continuous(sec.axis = ggplot2::sec_axis(~ . / scale_factor))** like this, I discovered that plotly does not support this function. Providing support for this function would greatly assist developers...