You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,38 @@
1
-
# 4.10.0.9000
1
+
# 4.10.1.9000
2
+
3
+
## Bug fixes
4
+
5
+
*`ggplotly()` no longer errors given a `geom_area()` with 1 or less data points (error introduced by new behavior in ggplot2 v3.4.0). (#2209)
6
+
7
+
8
+
# 4.10.1
9
+
10
+
## Changes to plotly.js
11
+
12
+
* This version of the R package upgrades the version of the underlying plotly.js library from v2.5.1 to v2.11.1. This includes many bug fixes and improvements. The [plotly.js release page](https://github.com/plotly/plotly.js/releases) has the full list of changes.
2
13
3
14
## New features
4
15
16
+
*`plotlyOutput()` gains a new `fill` parameter. When `TRUE` (the default), the widget's container element is allowed to grow/shrink to fit it's parent container so long as that parent is opinionated about its height and has been marked with `htmltools::bindFillRole(x, container = TRUE)`. (#2198)
17
+
* The primary motivation for this is to allow plots to grow/shrink by default [inside `bslib::card_body_fill()`](https://rstudio.github.io/bslib/articles/cards.html#responsive-sizing)
5
18
*`ggplotly()` now supports the `{ggalluvial}` package. (#2061, thanks @moutikabdessabour)
6
19
*`highlight()` now supports `on="plotly_selecting"`, enabling client-side linked brushing via mouse click+drag (no mouse-up event required, as with `on="plotly_selected"`). (#1280)
20
+
*`raster2uri()` supports nativeRaster objects. This enables nativeRaster support for
21
+
the `annotation_raster()` geom (#2174, @zeehio).
7
22
8
23
## Bug fixes
9
24
10
25
*`ggplotly()` now converts `stat_ecdf()` properly. (#2065)
11
26
*`ggplotly()` now correctly handles `geom_tile()` with no `fill` aesthetic. (#2063)
12
27
*`ggplotly()` now respects `guide(aes = "none")` (e.g., `guide(fill = "none")`) when constructing legend entries. (#2067)
13
28
* Fixed an issue with translating `GGally::ggcorr()` via `ggplotly()`. (#2012)
29
+
* Fixed an issue where clearing a crosstalk filter would raise an error in the JS console (#2087)
30
+
* Fixed an issue where `map_color()` would throw an error on R 4.2 (#2131)
14
31
15
32
## Improvements
16
33
17
34
*`ggplotly()` does not issue warnings with `options(warnPartialMatchArgs = TRUE)` any longer. (#2046, thanks @bersbersbers)
35
+
*`ggplotly()` does not issue warnings related to use of deprecated `tidyr::gather_()` in internals. (#2125, thanks @simonpcouch)
0 commit comments