Closed
Description
With htmlwidgets 1.5.1, there are some big troubles with some functions of the dygraphs package (e.g. dyStackedBarGroup or dyShadow).
Its is OK with the version 1.3.
I don't know if you should fix htmlwidgets or @pshevtsov should adapt dygraphs to version 1.5.1.
library(dygraphs)
library(magrittr)
## dataset
lungDeaths <- cbind(fdeaths, mdeaths, ldeaths, foo = fdeaths/2, bar = fdeaths/3)
## A bunch of different plotters together:
dygraph(lungDeaths) %>%
dyRangeSelector() %>%
dyBarSeries('bar') %>%
dyStemSeries('mdeaths') %>%
dyShadow('foo') %>%
dyFilledLine('fdeaths')
## Stacked Bar and Ribbon Graphs:
dygraph(lungDeaths) %>%
dySeries('mdeaths', axis = 'y2') %>%
dyAxis('y', valueRange = c(-100, 1000)) %>%
dyStackedBarGroup(c('ldeaths', 'fdeaths'))
Metadata
Metadata
Assignees
Labels
No labels