I would like to be able to create a plot with only one time serie but I want the interactive values to be displayed to come from two time series. Ideally, I would like to have something like this :
I know how to plot two time series
library(dygraphs)
lungDeaths <- cbind(mdeaths, fdeaths)
# This one creates a plot with the two time series
dygraph(lungDeaths)
I know how to plot only one time serie
# This one creates a plot with the mdeaths time serie
dygraph(lungDeaths[,1])
But How to plot one time serie, but display the values of two time series?