Description Usage Arguments Examples
Exporting options for higcharts objects. You can define the file's name or the output format.
1 | hc_exporting(hc, ...)
|
hc |
A |
... |
Arguments defined in http://api.highcharts.com/highcharts#exporting. |
1 2 3 4 5 6 7 8 9 10 | require("dplyr")
data("citytemp")
highchart() %>%
hc_xAxis(categories = citytemp$month) %>%
hc_add_series(name = "Tokyo", data = citytemp$tokyo) %>%
hc_add_series(name = "London", data = citytemp$london) %>%
hc_exporting(enabled = TRUE,
filename = "custom-file-name")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.