Description Usage Arguments Examples
View source: R/highcharts-api.R
The plotOptions is a wrapper object for config objects for each series type. The config objects for each series can also be overridden for each series item as given in the series array. Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.series object. Then options for all series of a specific type are given in the plotOptions of that type, for example plotOptions.line. Next, options for one single series are given in the series array.
1 | hc_plotOptions(hc, ...)
|
hc |
A |
... |
Arguments defined in https://api.highcharts.com/highcharts/plotOptions. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | highchart() %>%
hc_add_series(
data = c(29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4)
) %>%
hc_plotOptions(
line = list(
color = "blue",
marker = list(
fillColor = "white",
lineWidth = 2,
lineColor = NULL
)
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.