| hc_add_series_ts {highcharter} | R Documentation |
This function add a time series to a highchart object
from a ts object.
hc_add_series_ts(hc, ts, ...)
hc |
A |
ts |
A time series object. |
... |
Aditional arguments for the data series (http://api.highcharts.com/highcharts#series). |
This function modify the type of chart to datetime
## Not run:
highchart() %>%
hc_title(text = "Monthly Airline Passenger Numbers 1949-1960") %>%
hc_subtitle(text = "The classic Box and Jenkins airline data") %>%
hc_add_series_ts(AirPassengers, name = "passengers") %>%
hc_tooltip(pointFormat = '{point.y} passengers')
highchart() %>%
hc_title(text = "Monthly Deaths from Lung Diseases in the UK") %>%
hc_add_series_ts(fdeaths, name = "Female") %>%
hc_add_series_ts(mdeaths, name = "Male")
## End(Not run)