| hc_credits {highcharter} | R Documentation |
highcarter by default don't put credits in the chart.
You can add credits using these options.
hc_credits(hc, ...)
hc |
A |
... |
Arguments defined in http://api.highcharts.com/highcharts#credits. |
data("citytemp")
highchart() %>%
hc_xAxis(categories = citytemp$month) %>%
hc_add_series(name = "Tokyo", data = citytemp$tokyo, type = "bar") %>%
hc_credits(enabled = TRUE, text = "htmlwidgets.org",
href = "http://www.htmlwidgets.org/")