hc_add_series_times_values {highcharter} | R Documentation |
This function add a time series to a highchart
object.
hc_add_series_times_values(hc, dates, values, ...)
hc |
A |
dates |
A date vector (same length as |
values |
A numeric vector |
... |
Aditional arguments for the data series (http://api.highcharts.com/highcharts#series). |
This function modify the type of chart
to datetime
## Not run: require("ggplot2") data(economics, package = "ggplot2") hc_add_series_times_values(hc = highchart(), dates = economics$date, values = economics$psavert, name = "Personal Savings Rate") ## End(Not run)