diff --git a/DESCRIPTION b/DESCRIPTION
index 5bd9420d..3d918c22 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,10 +1,10 @@
Package: highcharter
Type: Package
-Version: 0.9.3.9000
+Version: 0.9.4
Title: A Wrapper for the 'Highcharts' Library
Description: A wrapper for the 'Highcharts' library including
shortcut functions to plot R objects. 'Highcharts'
- is a charting library offering
+ is a charting library offering
numerous chart types with a simple configuration syntax.
Authors@R: c(
person("Joshua", "Kunst", role = c("aut", "cre"), email = "jbkunst@gmail.com"),
@@ -23,7 +23,7 @@ Authors@R: c(
person("Bart", "Oortwijn", role = c("ctb"), comment = "rjson option, hc_add_yAxis, and GH issues collaborator"),
person("Paul", "Campbell", role = c("ctb"), comment = "additional proxy methods")
)
-URL: http://jkunst.com/highcharter, https://github.com/jbkunst/highcharter
+URL: https://jkunst.com/highcharter/, https://github.com/jbkunst/highcharter
BugReports: https://github.com/jbkunst/highcharter/issues
License: MIT + file LICENSE
RoxygenNote: 7.1.2
diff --git a/NEWS.md b/NEWS.md
index faa7e5f2..030a1721 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,4 @@
-# highcharter 0.9.2.9000
+# highcharter 0.9.4
## Changes
@@ -17,6 +17,7 @@ when the size of viewport is small (like tables o phones).
## Bugs
+* Fix url in documentations via `devtools::check_rhub()`.
* Removing `knitr.figure = FALSE` option in `sizingPolicy = htmlwidgets::sizingPolicy`
to fix #703
diff --git a/R/data.R b/R/data.R
index b890cda5..1fb581fe 100644
--- a/R/data.R
+++ b/R/data.R
@@ -1,6 +1,6 @@
#' Visual comparison of Mountains Panorama
#'
-#' This data comes from the \url{http://www.highcharts.com/} examples:
+#' This data comes from the \url{https://www.highcharts.com/} examples:
#' https://www.highcharts.com/demo/3d-area-multiple
#'
#' @section Variables:
@@ -21,7 +21,7 @@
#' City temperatures from a year in wide format
#'
-#' This data comes from the \url{http://www.highcharts.com/} examples.
+#' This data comes from the \url{https://www.highcharts.com/} examples.
#'
#' @section Variables:
#'
@@ -43,7 +43,7 @@
#' City temperatures from a year in long format
#'
-#' This data comes from the \url{http://www.highcharts.com/} examples.
+#' This data comes from the \url{https://www.highcharts.com/} examples.
#'
#' @section Variables:
#'
diff --git a/R/hchart-shorcuts.R b/R/hchart-shorcuts.R
index 0115db00..630cb221 100644
--- a/R/hchart-shorcuts.R
+++ b/R/hchart-shorcuts.R
@@ -1,7 +1,7 @@
#' Shortcut to make spkarlines
#' @param x A numeric vector.
#' @param type Type sparkline: line, bar, etc.
-#' @param ... Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.
+#' @param ... Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.
#'
#' @examples
#'
@@ -34,7 +34,7 @@ hcspark <- function(x = NULL, type = NULL, ...) {
#' @param var A string vector same length of x.
#' @param var2 A string vector same length of x.
#' @param outliers A boolean value to show or not the outliers.
-#' @param ... Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.
+#' @param ... Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.
#' @examples
#' \dontrun{
#' hcboxplot(x = iris$Sepal.Length, var = iris$Species, color = "red")
@@ -138,7 +138,7 @@ hcboxplot <- function(x = NULL, var = NULL, var2 = NULL, outliers = TRUE, ...) {
#' @param rows A integer to set
#' @param icons A character vector same length (o length 1) as labels
#' @param size Font size
-#' @param ... Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.
+#' @param ... Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.
#' @importFrom dplyr ungroup group_by
#' @importFrom rlang .data
#' @export
@@ -227,7 +227,7 @@ Item chart provides better behaviour beside is a specific type of chart of Highc
#'
#' @param tm A \code{treemap} object from the treemap package.
#' @param ... Additional shared arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}).
+#' (\url{https://api.highcharts.com/highcharts/series}).
#'
#' @examples
#' \dontrun{
@@ -310,7 +310,7 @@ hctreemap <- function(tm, ...) {
#' @param size_var string name of column containing numeric data to aggregate by
#' @param color_var string name of column containing numeric data to color by. defaults to same column as \code{size_var}
#' @param ... additional shared arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}).
+#' (\url{https://api.highcharts.com/highcharts/series}).
#'
#' @return highchart plot object
#' @examples
@@ -434,7 +434,7 @@ hctreemap2 <- function(data, group_vars, size_var, color_var = NULL, ...) {
#' Shortcut to create parallel coordinates
#' @param df A data frame object.
#' @param ... Additional shared arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}) for the
+#' (\url{https://api.highcharts.com/highcharts/series}) for the
#' \code{hchar.data.frame} function.
#' @examples
#' require(viridisLite)
diff --git a/R/hchart.R b/R/hchart.R
index d18bf520..166917ef 100644
--- a/R/hchart.R
+++ b/R/hchart.R
@@ -8,7 +8,7 @@
#'
#' @param object A R object.
#' @param ... Additional arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}).
+#' (\url{https://api.highcharts.com/highcharts/series}).
#'
#' @export
hchart <- function(object, ...) {
diff --git a/R/highcharter-package.R b/R/highcharter-package.R
index ab7793d5..44967f57 100644
--- a/R/highcharter-package.R
+++ b/R/highcharter-package.R
@@ -1,7 +1,7 @@
#' An `htmlwidget` interface to the
#' Highcharts javascript chart library
#'
-#' Highcharts \url{http://www.highcharts.com/} is a mature javascript
+#' Highcharts \url{https://www.highcharts.com/} is a mature javascript
#' charting library. Highcharts provide a various type of charts, from
#' scatters to heatmaps or treemaps.
#'
diff --git a/R/highcharter.R b/R/highcharter.R
index b7b4a717..b438d8f7 100644
--- a/R/highcharter.R
+++ b/R/highcharter.R
@@ -5,7 +5,7 @@
#' other applications.
#'
#' @param hc_opts A `list` object containing options defined as
-#' \url{http://api.highcharts.com/highcharts}.
+#' \url{https://api.highcharts.com/highcharts/}.
#' @param theme A \code{hc_theme} class object-
#' @param type A character value to set if use Highchart, Highstock or
#' Highmap. Options are \code{"chart"}, \code{"stock"} and \code{"map"}.
@@ -127,7 +127,7 @@ renderHighchart <- function(expr, env = parent.frame(), quoted = FALSE) {
#' other applications.
#'
#' @param hc_opts A `list` object containing options defined as
-#' \url{http://api.highcharts.com/highcharts}.
+#' \url{https://api.highcharts.com/highcharts/}.
#' @param theme A \code{hc_theme} class object.
#' @param type A character value to set if use Highchart, Highstock or
#' Highmap. Options are \code{"chart"}, \code{"stock"} and \code{"map"}.
diff --git a/R/highcharts-api-add.R b/R/highcharts-api-add.R
index c9d44bce..26f73f21 100644
--- a/R/highcharts-api-add.R
+++ b/R/highcharts-api-add.R
@@ -129,7 +129,7 @@ hc_add_series.ohlc <- function(hc, data, type = "candlestick", ...) {
#' @param fillOpacity The opacity of bands.
#' @param name The name of the series.
#' @param ... Arguments defined in
-#' \url{http://api.highcharts.com/highcharts#chart}.
+#' \url{https://api.highcharts.com/highcharts/chart}.
#' @export
hc_add_series.forecast <- function(hc, data, addOriginal = FALSE,
addLevels = TRUE, fillOpacity = 0.1, name = NULL, ...) {
@@ -252,7 +252,7 @@ hc_add_series.geo_list <- function(hc, data, type = NULL, ...) {
#' @param color A stringr color.
#' @param fillOpacity fillOpacity to the confidence interval.
#' @param ... Arguments defined in
-#' \url{http://api.highcharts.com/highcharts#chart}.
+#' \url{https://api.highcharts.com/highcharts/chart}.
#' @importFrom broom augment
#' @importFrom rlang .data
#' @export
@@ -299,7 +299,7 @@ hc_add_series.loess <- hc_add_series.lm
#' @param mapping The mapping, same idea as \code{ggplot2}.
#' @param fast convert to json during the composition of a highchart object
#' @param ... Arguments defined in
-#' \url{http://api.highcharts.com/highcharts#chart}.
+#' \url{https://api.highcharts.com/highcharts/chart}.
#' @importFrom rlang .data
#' @export
hc_add_series.data.frame <- function(hc, data, type = NULL, mapping = hcaes(), fast = FALSE, ...) {
@@ -626,7 +626,7 @@ hc_add_series_list <- function(hc, x) {
#' @param hc A `highchart` `htmlwidget` object.
#' @param series The name of type of series to apply the event.
#' @param event The name of event: click, mouseOut, mouseOver. See
-#' \url{http://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select}
+#' \url{https://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select}
#' for more details.
#'
#' @note Event details are accessible from hc_name_EventType, i.e. if a highchart is rendered against output$my_hc and
diff --git a/R/highcharts-api-helpers.R b/R/highcharts-api-helpers.R
index 95897f9b..30ebc1c6 100644
--- a/R/highcharts-api-helpers.R
+++ b/R/highcharts-api-helpers.R
@@ -38,7 +38,7 @@ validate_args <- function(name, lstargs) {
}
.hc_tooltip_table <- function(hc, ...) {
- # http://stackoverflow.com/a/22327749/829971
+ # https://stackoverflow.com/a/22327749/829971
hc %>%
highcharter::hc_tooltip(
shared = TRUE,
@@ -50,7 +50,7 @@ validate_args <- function(name, lstargs) {
}
.hc_tooltip_sort <- function(hc, ...) {
- # http://stackoverflow.com/a/16954666/829971
+ # https://stackoverflow.com/a/16954666/829971
hc %>%
highcharter::hc_tooltip(
shared = TRUE,
@@ -84,7 +84,7 @@ validate_args <- function(name, lstargs) {
#' inside of `hc_tooltip` function an `useHTML = TRUE` option.
#'
#' @param accesor A string indicating the name of the column where the data is.
-#' @param hc_opts A list of options using the \url{http://api.highcharts.com/highcharts}
+#' @param hc_opts A list of options using the \url{https://api.highcharts.com/highcharts/}
#' syntax.
#' @param width A numeric input in pixels indicating the with of the tooltip.
#' @param height A numeric input in pixels indicating the height of the tooltip.
@@ -337,7 +337,7 @@ hc_size <- function(hc, width = NULL, height = NULL) {
#' @param hc A \code{highchart} \code{htmlwidget} object.
#' @param enabled Enable the motion plugin.
#' @param startIndex start index, default to 0.
-#' @param ... Arguments defined in \url{https://github.com/larsac07/Motion-Highcharts-Plugin/wiki}.
+#' @param ... Arguments defined in \url{https://github.com/TorsteinHonsi/Motion-Highcharts-Plugin/wiki}.
#'
#' @export
hc_motion <- function(hc, enabled = TRUE, startIndex = 0, ...) {
@@ -388,7 +388,7 @@ hc_zAxis_multiples <- function(hc, ...) {
#' @param sep A numeric value for the separation (in percentage) for the panes.
#' @param offset A numeric value (in percentage).
#' @param turnopposite A logical value to turn the side of each axis or not.
-#' @param ... Arguments defined in \url{http://api.highcharts.com/highcharts/yAxis}.
+#' @param ... Arguments defined in \url{https://api.highcharts.com/highcharts/yAxis}.
#'
#' @examples
#'
diff --git a/R/highcharts-api.R b/R/highcharts-api.R
index 66b60a9f..f3f13dfb 100644
--- a/R/highcharts-api.R
+++ b/R/highcharts-api.R
@@ -846,9 +846,9 @@ hc_title <- function(hc, ...) {
#' @param hc A `highchart` `htmlwidget` object.
#' @param ... Arguments defined in \url{https://api.highcharts.com/highcharts/tooltip}.
#' @param sort Logical value to implement sort according `this.point`
-#' \url{http://stackoverflow.com/a/16954666/829971}.
+#' \url{https://stackoverflow.com/a/16954666/829971}.
#' @param table Logical value to implement table in tooltip:
-#' \url{http://stackoverflow.com/a/22327749/829971}.
+#' \url{https://stackoverflow.com/a/22327749/829971}.
#'
#' @examples
#'
diff --git a/R/highmaps.R b/R/highmaps.R
index 44e25a02..ab4ce34a 100644
--- a/R/highmaps.R
+++ b/R/highmaps.R
@@ -7,7 +7,7 @@
#' @param value A string value with the name of the variable to chart.
#' @param joinBy What property to join the \code{map} and \code{df}
#' @param ... Additional shared arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}).
+#' (\url{https://api.highcharts.com/highcharts/series}).
#'
#' @examples
#'
@@ -86,7 +86,7 @@ hc_add_series_map <- function(hc, map, df, value, joinBy, ...) {
#' @param value A string value with the name of the variable to chart.
#' @param joinBy What property to join the \code{map} and \code{df}.
#' @param ... Additional shared arguments for the data series
-#' (\url{http://api.highcharts.com/highcharts#series}).
+#' (\url{https://api.highcharts.com/highcharts/series}).
#'
#' @examples
#'
diff --git a/R/theme-chalk.R b/R/theme-chalk.R
index 71d435f5..6840b74a 100644
--- a/R/theme-chalk.R
+++ b/R/theme-chalk.R
@@ -3,7 +3,7 @@
#' @param ... A named parameters to modify the theme.
#'
#' Chalk theme for highcharts was inspired by
-#' \url{https://www.amcharts.com/inspiration/hand-drawn/}.
+#' \url{https://www.amcharts.com/demos/}.
#'
#' @examples
#'
diff --git a/R/theme-ffx.R b/R/theme-ffx.R
index 4ce2c7ee..cf37445c 100644
--- a/R/theme-ffx.R
+++ b/R/theme-ffx.R
@@ -1,6 +1,6 @@
#' Firefox theme for highcharts
#'
-#' Firefox theme was inspired by \url{https://www.mozilla.org/en-US/styleguide/}.
+#' Firefox theme was inspired by \url{https://mozilla.design/}.
#'
#' @param ... A named parameters to modify the theme.
#'
diff --git a/R/theme-flat.R b/R/theme-flat.R
index 37b6c8a5..42e65107 100644
--- a/R/theme-flat.R
+++ b/R/theme-flat.R
@@ -2,7 +2,7 @@
#'
#' Flat and flatdark theme is inspired by
#' \url{https://github.com/chriskempson/base16} and
-#' \url{https://github.com/cttobin/ggthemr#flat}
+#' \url{https://github.com/Mikata-Project/ggthemr#flat}
#'
#' @param ... A named parameters to modify the theme.
#'
diff --git a/R/theme-handdrawn.R b/R/theme-handdrawn.R
index eee10b7b..b7204247 100644
--- a/R/theme-handdrawn.R
+++ b/R/theme-handdrawn.R
@@ -1,7 +1,7 @@
#' Hand Drawn theme for highcharts
#'
#' Hand Drawn theme for highcharts. Inspired by
-#' \url{https://www.amcharts.com/inspiration/hand-drawn/}.
+#' \url{https://www.amcharts.com/demos/}.
#'
#' @param ... A named parameters to modify the theme.
#'
diff --git a/R/theme-sandsignika.R b/R/theme-sandsignika.R
index dfff17da..8563851c 100644
--- a/R/theme-sandsignika.R
+++ b/R/theme-sandsignika.R
@@ -17,7 +17,7 @@ hc_theme_sandsignika <- function(...) {
chart = list(
backgroundColor = NULL,
divBackgroundImage =
- "http://www.highcharts.com/samples/graphics/sand.png",
+ "https://www.highcharts.com/samples/graphics/sand.png",
style = list(
fontFamily = "Signika, serif"
)
diff --git a/R/theme-smpl.R b/R/theme-smpl.R
index 74ebcd24..530e537e 100644
--- a/R/theme-smpl.R
+++ b/R/theme-smpl.R
@@ -1,7 +1,7 @@
#' Simple theme for highcharts
#'
#' Theme smpl design is inspired by \url{https://github.com/hrbrmstr/hrbrmisc/blob/master/R/themes.r}
-#' and color by \url{https://www.materialui.co/flatuicolors}.
+#' and color by \url{https://materialui.co/flatuicolors}.
#'
#' @param ... A named parameters to modify the theme.
#'
diff --git a/R/theme-sparkline.R b/R/theme-sparkline.R
index 431ea727..09949ca9 100644
--- a/R/theme-sparkline.R
+++ b/R/theme-sparkline.R
@@ -1,7 +1,7 @@
#' Sparkline theme for highcharts
#'
-#' Sparkline theme is based on \url{http://www.highcharts.com/demo/sparkline}
-#' and this post \url{http://jkunst.com/blog/posts/2020-06-26-valuebox-and-sparklines/}.
+#' Sparkline theme is based on \url{https://www.highcharts.com/demo/sparkline}
+#' and this post \url{https://jkunst.com/blog/posts/2020-06-26-valuebox-and-sparklines/}.
#'
#' @param ... A named parameters to modify the theme.
#'
diff --git a/R/theme.R b/R/theme.R
index fb1d8c4a..879d2c4e 100644
--- a/R/theme.R
+++ b/R/theme.R
@@ -4,7 +4,7 @@
#' There are some exiting themes so you can apply style to charts with few
#' lines of code.
#'
-#' More examples and details in \url{http://www.highcharts.com/docs/chart-design-and-style/themes}.
+#' More examples and details in \url{https://www.highcharts.com/docs/chart-design-and-style/themes}.
#'
#' @param ... A list of named parameters.
#'
diff --git a/README.md b/README.md
index 956810d0..5b866fa3 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,8 @@
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/highcharter?color=brightgreen)](https://cran.r-project.org/package=highcharter)
[![CRAN downloads](https://cranlogs.r-pkg.org/badges/highcharter?color=brightgreen)](https://www.r-pkg.org/pkg/highcharter)
[![Project Status: Active – The project has reached a stable, usablestate and is being activelydeveloped.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
-[![Lifecycle:stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
-[![Codecov test coverage](https://codecov.io/gh/jbkunst/highcharter/branch/master/graph/badge.svg)](https://codecov.io/gh/jbkunst/highcharter?branch=master)
+[![Lifecycle:stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html)
+[![Codecov test coverage](https://codecov.io/gh/jbkunst/highcharter/branch/master/graph/badge.svg)](https://app.codecov.io/gh/jbkunst/highcharter?branch=master)
[![Last commit](https://img.shields.io/github/last-commit/jbkunst/highcharter.svg)](https://github.com/jbkunst/highcharter/issues)
[![GitHub closed issues](https://img.shields.io/github/issues-raw/jbkunst/highcharter.svg)](https://github.com/jbkunst/highcharter/issues)
[![GitHub issues](https://img.shields.io/github/issues-closed-raw/jbkunst/highcharter.svg)](https://github.com/jbkunst/highcharter/issues)
diff --git a/cran-comments.md b/cran-comments.md
index 76a89ada..a89e65f9 100644
--- a/cran-comments.md
+++ b/cran-comments.md
@@ -1,14 +1 @@
-## Resubmission
-
-- Adding `if(interactive())` to example for the `checking for detritus in the temp directory`
-NOTE based on https://stackoverflow.com/questions/62456137/r-cran-check-detritus-in-temp-directory.
-
-## Notes on past resubmission
-
-- Removing invalid URLs from the documentation. Sorry for not fix all URL in
-the previous submission.
-- Removing invalid URLs from the documentation.
-- Fix the examples with more than 10s elapsed times.
-- Remove the VignetteBuilder field in DESCRIPTION file.
-- Fix CRAN checks https://cran.r-project.org/web/checks/check_results_highcharter.html
-- Updating highchartsJS libraries an adding new functionalities.
+No comments.
diff --git a/data-raw/pokemon.R b/data-raw/pokemon.R
index 0cf32254..ed3fbf44 100644
--- a/data-raw/pokemon.R
+++ b/data-raw/pokemon.R
@@ -28,11 +28,11 @@ pkmn_detail_url <- bulbapedia_html %>%
html_attr("href")
library(furrr)
-plan(multiprocess(workers = 10))
+plan(multisession(workers = 10))
dfpkmn_detail <- furrr::future_map_dfr(
pkmn_detail_url,
- function(url = "/wiki/Rattata_(Pok%C3%A9mon)"){
+ function(url = "/wiki/Slowpoke_(Pok%C3%A9mon)"){
message(url)
# url <- "/wiki/Necrozma_(Pokémon)"
diff --git a/data/pokemon.rda b/data/pokemon.rda
index d546360f..48e5c6e5 100644
Binary files a/data/pokemon.rda and b/data/pokemon.rda differ
diff --git a/dev/examples-charts/errorbar.R b/dev/examples-charts/errorbar.R
new file mode 100644
index 00000000..98593f8d
--- /dev/null
+++ b/dev/examples-charts/errorbar.R
@@ -0,0 +1,31 @@
+example_dat <- tibble(
+ Type = c("Human", "High-Elf", "Orc"),
+ key = c("World1", "World2", "World3")
+ ) %>%
+ expand.grid() %>%
+ mutate(mean = runif(9, 5, 7)) %>%
+ mutate(sd = runif(9, 0.5, 1))
+
+hchart(
+ example_dat,
+ "column",
+ hcaes(x = key, y = mean, group = Type),
+ id = c("a", "b", "c")
+ ) %>%
+
+ hc_add_series(
+ example_dat,
+ "errorbar",
+ hcaes(y = mean, x = key, low = mean - sd, high = mean + sd, group = Type),
+ linkedTo = c("a", "b", "c"),
+ enableMouseTracking = TRUE,
+ showInLegend = FALSE
+ ) %>%
+
+ hc_plotOptions(
+ errorbar = list(
+ color = "black",
+ # whiskerLength = 1,
+ stemWidth = 1
+ )
+ )
diff --git a/dev/examples-charts/networkgraph.R b/dev/examples-charts/networkgraph.R
index 40402c4d..d191f5fb 100644
--- a/dev/examples-charts/networkgraph.R
+++ b/dev/examples-charts/networkgraph.R
@@ -14,10 +14,9 @@ highchartzero() %>%
hc_add_dependency("modules/networkgraph.js")
-
# example 2 ---------------------------------------------------------------
library(igraphdata)
-data(package = "igraphdata")
+# data(package = "igraphdata")
data(karate, package = "igraphdata")
@@ -33,3 +32,148 @@ highchartzero() %>%
layoutAlgorithm = list(enableSimulation = TRUE)
) %>%
hc_add_dependency("modules/networkgraph.js")
+
+
+# example 3 ---------------------------------------------------------------
+highchartzero() %>%
+ hc_add_dependency(name = 'modules/networkgraph.js') %>%
+ hc_chart(type = 'networkgraph') %>%
+ hc_title(text = 'The Indo-European Language Tree') %>%
+ hc_subtitle(text = 'A Force-Directed Network Graph in Highcharts') %>%
+ hc_plotOptions(networkgraph = list(
+ keys = c('from', 'to'),
+ layoutAlgorithm = list(enableSimulation = TRUE, friction = -0.9)
+ )) %>%
+ hc_add_series(
+ dataLabels = list(enabled = TRUE, linkFormat = ''),
+ id = 'lang-tree',
+ data = list(
+ c('Proto Indo-European', 'Balto-Slavic'),
+ c('Proto Indo-European', 'Germanic'),
+ c('Proto Indo-European', 'Celtic'),
+ c('Proto Indo-European', 'Italic'),
+ c('Proto Indo-European', 'Hellenic'),
+ c('Proto Indo-European', 'Anatolian'),
+ c('Proto Indo-European', 'Indo-Iranian'),
+ c('Proto Indo-European', 'Tocharian'),
+ c('Indo-Iranian', 'Dardic'),
+ c('Indo-Iranian', 'Indic'),
+ c('Indo-Iranian', 'Iranian'),
+ c('Iranian', 'Old Persian'),
+ c('Old Persian', 'Middle Persian'),
+ c('Indic', 'Sanskrit'),
+ c('Italic', 'Osco-Umbrian'),
+ c('Italic', 'Latino-Faliscan'),
+ c('Latino-Faliscan', 'Latin'),
+ c('Celtic', 'Brythonic'),
+ c('Celtic', 'Goidelic'),
+ c('Germanic', 'North Germanic'),
+ c('Germanic', 'West Germanic'),
+ c('Germanic', 'East Germanic'),
+ c('North Germanic', 'Old Norse'),
+ c('North Germanic', 'Old Swedish'),
+ c('North Germanic', 'Old Danish'),
+ c('West Germanic', 'Old English'),
+ c('West Germanic', 'Old Frisian'),
+ c('West Germanic', 'Old Dutch'),
+ c('West Germanic', 'Old Low German'),
+ c('West Germanic', 'Old High German'),
+ c('Old Norse', 'Old Icelandic'),
+ c('Old Norse', 'Old Norwegian'),
+ c('Old Norwegian', 'Middle Norwegian'),
+ c('Old Swedish', 'Middle Swedish'),
+ c('Old Danish', 'Middle Danish'),
+ c('Old English', 'Middle English'),
+ c('Old Dutch', 'Middle Dutch'),
+ c('Old Low German', 'Middle Low German'),
+ c('Old High German', 'Middle High German'),
+ c('Balto-Slavic', 'Baltic'),
+ c('Balto-Slavic', 'Slavic'),
+ c('Slavic', 'East Slavic'),
+ c('Slavic', 'West Slavic'),
+ c('Slavic', 'South Slavic'),
+ c('Proto Indo-European', 'Phrygian'),
+ c('Proto Indo-European', 'Armenian'),
+ c('Proto Indo-European', 'Albanian'),
+ c('Proto Indo-European', 'Thracian'),
+ c('Tocharian', 'Tocharian A'),
+ c('Tocharian', 'Tocharian B'),
+ c('Anatolian', 'Hittite'),
+ c('Anatolian', 'Palaic'),
+ c('Anatolian', 'Luwic'),
+ c('Anatolian', 'Lydian'),
+ c('Iranian', 'Balochi'),
+ c('Iranian', 'Kurdish'),
+ c('Iranian', 'Pashto'),
+ c('Iranian', 'Sogdian'),
+ c('Old Persian', 'Pahlavi'),
+ c('Middle Persian', 'Persian'),
+ c('Hellenic', 'Greek'),
+ c('Dardic', 'Dard'),
+ c('Sanskrit', 'Sindhi'),
+ c('Sanskrit', 'Romani'),
+ c('Sanskrit', 'Urdu'),
+ c('Sanskrit', 'Hindi'),
+ c('Sanskrit', 'Bihari'),
+ c('Sanskrit', 'Assamese'),
+ c('Sanskrit', 'Bengali'),
+ c('Sanskrit', 'Marathi'),
+ c('Sanskrit', 'Gujarati'),
+ c('Sanskrit', 'Punjabi'),
+ c('Sanskrit', 'Sinhalese'),
+ c('Osco-Umbrian', 'Umbrian'),
+ c('Osco-Umbrian', 'Oscan'),
+ c('Latino-Faliscan', 'Faliscan'),
+ c('Latin', 'Portugese'),
+ c('Latin', 'Spanish'),
+ c('Latin', 'French'),
+ c('Latin', 'Romanian'),
+ c('Latin', 'Italian'),
+ c('Latin', 'Catalan'),
+ c('Latin', 'Franco-Provençal'),
+ c('Latin', 'Rhaeto-Romance'),
+ c('Brythonic', 'Welsh'),
+ c('Brythonic', 'Breton'),
+ c('Brythonic', 'Cornish'),
+ c('Brythonic', 'Cuymbric'),
+ c('Goidelic', 'Modern Irish'),
+ c('Goidelic', 'Scottish Gaelic'),
+ c('Goidelic', 'Manx'),
+ c('East Germanic', 'Gothic'),
+ c('Middle Low German', 'Low German'),
+ c('Middle High German', '(High) German'),
+ c('Middle High German', 'Yiddish'),
+ c('Middle English', 'English'),
+ c('Middle Dutch', 'Hollandic'),
+ c('Middle Dutch', 'Flemish'),
+ c('Middle Dutch', 'Dutch'),
+ c('Middle Dutch', 'Limburgish'),
+ c('Middle Dutch', 'Brabantian'),
+ c('Middle Dutch', 'Rhinelandic'),
+ c('Old Frisian', 'Frisian'),
+ c('Middle Danish', 'Danish'),
+ c('Middle Swedish', 'Swedish'),
+ c('Middle Norwegian', 'Norwegian'),
+ c('Old Norse', 'Faroese'),
+ c('Old Icelandic', 'Icelandic'),
+ c('Baltic', 'Old Prussian'),
+ c('Baltic', 'Lithuanian'),
+ c('Baltic', 'Latvian'),
+ c('West Slavic', 'Polish'),
+ c('West Slavic', 'Slovak'),
+ c('West Slavic', 'Czech'),
+ c('West Slavic', 'Wendish'),
+ c('East Slavic', 'Bulgarian'),
+ c('East Slavic', 'Old Church Slavonic'),
+ c('East Slavic', 'Macedonian'),
+ c('East Slavic', 'Serbo-Croatian'),
+ c('East Slavic', 'Slovene'),
+ c('South Slavic', 'Russian'),
+ c('South Slavic', 'Ukrainian'),
+ c('South Slavic', 'Belarusian'),
+ c('South Slavic', 'Rusyn')
+ )
+ ) %>%
+ hc_exporting(enabled = TRUE)
+
+
diff --git a/docs/404.html b/docs/404.html
index 798fc684..35afc641 100644
--- a/docs/404.html
+++ b/docs/404.html
@@ -32,7 +32,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html
index f01321b2..186f7819 100644
--- a/docs/CODE_OF_CONDUCT.html
+++ b/docs/CODE_OF_CONDUCT.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html
index 20c9a2c6..4305290c 100644
--- a/docs/CONTRIBUTING.html
+++ b/docs/CONTRIBUTING.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html
index d827022f..733bc29e 100644
--- a/docs/LICENSE-text.html
+++ b/docs/LICENSE-text.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/PULL_REQUEST_TEMPLATE.html b/docs/PULL_REQUEST_TEMPLATE.html
index e0c6e7d3..cf653b42 100644
--- a/docs/PULL_REQUEST_TEMPLATE.html
+++ b/docs/PULL_REQUEST_TEMPLATE.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -96,7 +96,7 @@ Minimal reproducible examplehttps://github.com/jennybc/reprex#what-is-a-reprex , and follow the advice further down the page. Do NOT include session info unless it’s explicitly asked for, or you’ve used reprex::reprex(..., si = TRUE)
to hide it away.
diff --git a/docs/articles/drilldown.html b/docs/articles/drilldown.html
index 8bc00e56..d6938ea2 100644
--- a/docs/articles/drilldown.html
+++ b/docs/articles/drilldown.html
@@ -36,7 +36,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -101,12 +101,12 @@
-
+
Exmaple II: Pokémon data
@@ -258,8 +258,8 @@ Exmaple II: Pokémon datahc_chart (
style = list ( fontFamily = "Gloria Hallelujah" )
)
-
-
+
+
diff --git a/docs/articles/drilldown_files/highchart-binding-0.9.3.9000/highchart.js b/docs/articles/drilldown_files/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/articles/drilldown_files/highchart-binding-0.9.3.9000/highchart.js
rename to docs/articles/drilldown_files/highchart-binding-0.9.4/highchart.js
diff --git a/docs/articles/fontawesome.html b/docs/articles/fontawesome.html
index d26b2f2c..550c4075 100644
--- a/docs/articles/fontawesome.html
+++ b/docs/articles/fontawesome.html
@@ -36,7 +36,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
@@ -101,12 +101,12 @@
-
+
-
+
-
-
+
+
@@ -147,15 +147,15 @@
hchart ( penguins2 , "column" , hcaes ( x = island , y = n , group = species ) )
-
-
Check automatically if the x column is date class:
+
+
Check automatically if the x column is date class:
economics_long2 <- economics_long %>%
filter ( variable %in% c ( "pop" , "uempmed" , "unemploy" ) )
hchart ( economics_long2 , "line" , hcaes ( x = date , y = value01 , group = variable ) )
-
-
+
+
-
-
+
+
Densities
hchart ( density ( x ) , type = "area" , color = "#B71C1C" , name = "Price" )
-
-
+
+
-
-
+
+
-
-
+
+
Seasonal Decomposition of Time Series by Loess
@@ -198,8 +198,8 @@ Seasonal Decomposition o
-
-
+
+
-
-
+
+
Igraph package
@@ -232,8 +232,8 @@ Igraph packageV ( net ) $ color <- colorize ( membership ( wc ) )
hchart ( net , layout = layout_with_fr )
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
Principal Components
-
-
+
+
Matrix
@@ -301,8 +301,8 @@ Matrix
hc_colorAxis (
stops = color_stops ( colors = c ( "#000004FF" , "#56106EFF" , "#BB3754FF" , "#F98C0AFF" , "#FCFFA4FF" ) )
)
-
-
+
+
-
-
+
+
Correlation matrix
-
-
+
+
diff --git a/docs/articles/hchart_files/highchart-binding-0.9.3.9000/highchart.js b/docs/articles/hchart_files/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/articles/hchart_files/highchart-binding-0.9.3.9000/highchart.js
rename to docs/articles/hchart_files/highchart-binding-0.9.4/highchart.js
diff --git a/docs/articles/highcharter.html b/docs/articles/highcharter.html
index 51f62441..88dc817f 100644
--- a/docs/articles/highcharter.html
+++ b/docs/articles/highcharter.html
@@ -36,7 +36,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -101,12 +101,12 @@
-
+
-
-
-
+
Chart
@@ -172,8 +172,8 @@ Chart
)
)
)
-
-Now change type to column and add 3d effect.
+
+Now change type to column and add 3d effect.
hc <- hc %>%
hc_chart (
@@ -185,8 +185,8 @@ Chart
)
)
hc
-
-
+
+
# back to the line!
hc <- hc_chart ( hc , type = "line" , options3d = list ( enabled = FALSE ) )
@@ -215,8 +215,8 @@ Title, subtitle, caption and credits
href = "http://jkunst.com/highcharter" ,
enabled = TRUE
)
-
-
+
+
Axis
@@ -236,8 +236,8 @@ Axis
showFirstLabel = FALSE ,
showLastLabel = FALSE
)
-
-A good feature is plotLines
and plotBand
which you can use in both axis. For example:
+
+A good feature is plotLines
and plotBand
which you can use in both axis. For example:
-
-
+
+
-
-
+
+
diff --git a/docs/articles/highcharts-api_files/highchart-binding-0.9.3.9000/highchart.js b/docs/articles/highcharts-api_files/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/articles/highcharts-api_files/highchart-binding-0.9.3.9000/highchart.js
rename to docs/articles/highcharts-api_files/highchart-binding-0.9.4/highchart.js
diff --git a/docs/articles/highcharts.html b/docs/articles/highcharts.html
index 406dff0c..1f75e963 100644
--- a/docs/articles/highcharts.html
+++ b/docs/articles/highcharts.html
@@ -36,7 +36,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
@@ -101,12 +101,12 @@
-
+
vector
diff --git a/docs/articles/highcharts_files/highchart-binding-0.9.3.9000/highchart.js b/docs/articles/highcharts_files/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/articles/highcharts_files/highchart-binding-0.9.3.9000/highchart.js
rename to docs/articles/highcharts_files/highchart-binding-0.9.4/highchart.js
diff --git a/docs/articles/highchartsjs-api-basics.html b/docs/articles/highchartsjs-api-basics.html
index 7b418c08..9178ef96 100644
--- a/docs/articles/highchartsjs-api-basics.html
+++ b/docs/articles/highchartsjs-api-basics.html
@@ -38,7 +38,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -103,12 +103,12 @@
-
+
-
-Halfway there, now we just need to add the legend title. There are some arguments in the API documentation that look like sets of nested properties. Importantly for this exercise, the title
argument look exactly like one of these properties.
+
+Halfway there, now we just need to add the legend title. There are some arguments in the API documentation that look like sets of nested properties. Importantly for this exercise, the title
argument look exactly like one of these properties.
The drop-down + curly braces (highlighted in green) on an argument like this tell you that what highcharts
expects here is a self-contained set of properties that sit within the border property set. In this case the title property takes two arguments text
and style
which define the title text of the legend and the legend title CSS style respectively.
To correctly create this hierarchical set of properties within the R hc_legend()
function we need to use named lists. Each time the API documentation defines an property to be it’s own self-contained object within a broader set of properties you simply open a new list in your R function call. This will mean that sometimes the values provided to arguments within highcharter
functions are nested lists with 2 or even 3 levels. This can seem complicated, but having the API documentation as a reference makes the process trivially easy.
@@ -217,8 +217,8 @@ Example
)
)
)
-
-
CSS properties are often hyphenated words (like text-decoration
) which won’t play nicely in R lists so you should define any CSS properties in your R lists with camel case version of these property names (eg. textDecoration
).
+
+
CSS properties are often hyphenated words (like text-decoration
) which won’t play nicely in R lists so you should define any CSS properties in your R lists with camel case version of these property names (eg. textDecoration
).
Conclusion
diff --git a/docs/articles/highchartsjs-api-basics_files/highchart-binding-0.9.3.9000/highchart.js b/docs/articles/highchartsjs-api-basics_files/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/articles/highchartsjs-api-basics_files/highchart-binding-0.9.3.9000/highchart.js
rename to docs/articles/highchartsjs-api-basics_files/highchart-binding-0.9.4/highchart.js
diff --git a/docs/articles/howtos.html b/docs/articles/howtos.html
index 7b031e78..7c27fd37 100644
--- a/docs/articles/howtos.html
+++ b/docs/articles/howtos.html
@@ -36,7 +36,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -101,12 +101,12 @@
-
+
On this page
diff --git a/docs/reference/globaltemp.html b/docs/reference/globaltemp.html
index 29e35ce1..01a25822 100644
--- a/docs/reference/globaltemp.html
+++ b/docs/reference/globaltemp.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_annotation.html b/docs/reference/hc_add_annotation.html
index 5c93efad..33377e1a 100644
--- a/docs/reference/hc_add_annotation.html
+++ b/docs/reference/hc_add_annotation.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_dependency.html b/docs/reference/hc_add_dependency.html
index 710efb47..9a46e754 100644
--- a/docs/reference/hc_add_dependency.html
+++ b/docs/reference/hc_add_dependency.html
@@ -2,7 +2,7 @@
Add modules or plugin dependencies to highcharts objects — hc_add_dependency • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_dependency_fa.html b/docs/reference/hc_add_dependency_fa.html
index e39214f2..26872e06 100644
--- a/docs/reference/hc_add_dependency_fa.html
+++ b/docs/reference/hc_add_dependency_fa.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_event_point.html b/docs/reference/hc_add_event_point.html
index eb456fcf..2663647c 100644
--- a/docs/reference/hc_add_event_point.html
+++ b/docs/reference/hc_add_event_point.html
@@ -18,7 +18,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -107,7 +107,7 @@ Argumentshttp://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select
+https://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select
for more details.
diff --git a/docs/reference/hc_add_series.character.html b/docs/reference/hc_add_series.character.html
index 2dd5d5d6..f223c4da 100644
--- a/docs/reference/hc_add_series.character.html
+++ b/docs/reference/hc_add_series.character.html
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_add_series.data.frame.html b/docs/reference/hc_add_series.data.frame.html
index 741e0e48..915e74ac 100644
--- a/docs/reference/hc_add_series.data.frame.html
+++ b/docs/reference/hc_add_series.data.frame.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -100,7 +100,7 @@ Argumentshttp://api.highcharts.com/highcharts#chart .
+https://api.highcharts.com/highcharts/chart .
On this page
diff --git a/docs/reference/hc_add_series.density.html b/docs/reference/hc_add_series.density.html
index 8587f6c2..7c16cec6 100644
--- a/docs/reference/hc_add_series.density.html
+++ b/docs/reference/hc_add_series.density.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series.forecast.html b/docs/reference/hc_add_series.forecast.html
index d328bde5..62308100 100644
--- a/docs/reference/hc_add_series.forecast.html
+++ b/docs/reference/hc_add_series.forecast.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -110,7 +110,7 @@ Argumentshttp://api.highcharts.com/highcharts#chart .
+https://api.highcharts.com/highcharts/chart .
On this page
diff --git a/docs/reference/hc_add_series.geo_json.html b/docs/reference/hc_add_series.geo_json.html
index 0527e1d6..e2c8a2cd 100644
--- a/docs/reference/hc_add_series.geo_json.html
+++ b/docs/reference/hc_add_series.geo_json.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series.html b/docs/reference/hc_add_series.html
index 084a985b..ebf69033 100644
--- a/docs/reference/hc_add_series.html
+++ b/docs/reference/hc_add_series.html
@@ -2,7 +2,7 @@
Adding data to highchart objects — hc_add_series • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series.lm.html b/docs/reference/hc_add_series.lm.html
index 2f04539a..90df3ab2 100644
--- a/docs/reference/hc_add_series.lm.html
+++ b/docs/reference/hc_add_series.lm.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -117,7 +117,7 @@ Argumentshttp://api.highcharts.com/highcharts#chart .
+https://api.highcharts.com/highcharts/chart .
On this page
diff --git a/docs/reference/hc_add_series.numeric.html b/docs/reference/hc_add_series.numeric.html
index 5c51f98a..8d3c5f00 100644
--- a/docs/reference/hc_add_series.numeric.html
+++ b/docs/reference/hc_add_series.numeric.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series.ts.html b/docs/reference/hc_add_series.ts.html
index 6e8290c6..e30d7931 100644
--- a/docs/reference/hc_add_series.ts.html
+++ b/docs/reference/hc_add_series.ts.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series.xts.html b/docs/reference/hc_add_series.xts.html
index 38250def..a62939cf 100644
--- a/docs/reference/hc_add_series.xts.html
+++ b/docs/reference/hc_add_series.xts.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series_list.html b/docs/reference/hc_add_series_list.html
index 96f51936..850ad464 100644
--- a/docs/reference/hc_add_series_list.html
+++ b/docs/reference/hc_add_series_list.html
@@ -2,7 +2,7 @@
Shortcut for data series from a list of data series — hc_add_series_list • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_add_series_map.html b/docs/reference/hc_add_series_map.html
index c04852d5..bdbfe4cd 100644
--- a/docs/reference/hc_add_series_map.html
+++ b/docs/reference/hc_add_series_map.html
@@ -2,7 +2,7 @@
Add a map series — hc_add_series_map • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -100,7 +100,7 @@ Argumentshttp://api.highcharts.com/highcharts#series ).
+(https://api.highcharts.com/highcharts/series ).
+
diff --git a/docs/reference/hc_add_yAxis.html b/docs/reference/hc_add_yAxis.html
index fdda82a1..004911c4 100644
--- a/docs/reference/hc_add_yAxis.html
+++ b/docs/reference/hc_add_yAxis.html
@@ -10,7 +10,7 @@
Otherwise the parameters are as supported by Y axis.">
+
Skip to contents
@@ -18,7 +18,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -165,7 +165,7 @@ Examples hc_add_series ( aapl [ , "AAPL.Volume" ] , yAxis = 1 , type = "column" , showInLegend = FALSE ) %>%
hc_add_yAxis ( nid = 2L , title = list ( text = "Volume" ) , relative = 1 )
-
+
diff --git a/docs/reference/hc_annotations.html b/docs/reference/hc_annotations.html
index c1e60bbc..fc966aae 100644
--- a/docs/reference/hc_annotations.html
+++ b/docs/reference/hc_annotations.html
@@ -6,7 +6,7 @@
or chart pixel coordinates.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_boost.html b/docs/reference/hc_boost.html
index a4ec5edb..389e4541 100644
--- a/docs/reference/hc_boost.html
+++ b/docs/reference/hc_boost.html
@@ -22,7 +22,7 @@
Requires the modules/boost.js module.">
+
Skip to contents
@@ -30,7 +30,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_caption.html b/docs/reference/hc_caption.html
index 1e4eb6e4..facdeaea 100644
--- a/docs/reference/hc_caption.html
+++ b/docs/reference/hc_caption.html
@@ -6,7 +6,7 @@
through the Chart.update or Chart.caption.update methods.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_chart.html b/docs/reference/hc_chart.html
index ff9aef53..c668d43d 100644
--- a/docs/reference/hc_chart.html
+++ b/docs/reference/hc_chart.html
@@ -2,7 +2,7 @@
Chart options for highcharter objects — hc_chart • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_colorAxis.html b/docs/reference/hc_colorAxis.html
index 5f17da6d..e36f4625 100644
--- a/docs/reference/hc_colorAxis.html
+++ b/docs/reference/hc_colorAxis.html
@@ -52,7 +52,7 @@
programmatic access to the axis.">
+
Skip to contents
@@ -60,7 +60,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_colors.html b/docs/reference/hc_colors.html
index c2b0f672..7836e9ed 100644
--- a/docs/reference/hc_colors.html
+++ b/docs/reference/hc_colors.html
@@ -4,7 +4,7 @@
colors are used, new colors are pulled from the start again.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_credits.html b/docs/reference/hc_credits.html
index fd5d35e9..6940dc39 100644
--- a/docs/reference/hc_credits.html
+++ b/docs/reference/hc_credits.html
@@ -4,7 +4,7 @@
of the chart. This can be changed using these options.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_drilldown.html b/docs/reference/hc_drilldown.html
index 0e098f5e..95c98fda 100644
--- a/docs/reference/hc_drilldown.html
+++ b/docs/reference/hc_drilldown.html
@@ -10,7 +10,7 @@
code.highcharts.com/modules/drilldown.js.">
+
Skip to contents
@@ -18,7 +18,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -108,7 +108,7 @@ Arguments
Examples
-library ( highcharter )
+library ( highcharter )
library ( dplyr )
library ( purrr )
diff --git a/docs/reference/hc_elementId.html b/docs/reference/hc_elementId.html
index 9b1d1e1b..fc2e9c18 100644
--- a/docs/reference/hc_elementId.html
+++ b/docs/reference/hc_elementId.html
@@ -2,7 +2,7 @@
Setting elementId — hc_elementId • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_exporting.html b/docs/reference/hc_exporting.html
index f7aafcd6..d092fc12 100644
--- a/docs/reference/hc_exporting.html
+++ b/docs/reference/hc_exporting.html
@@ -4,7 +4,7 @@
the docs.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_labels.html b/docs/reference/hc_labels.html
index f227f111..1b6efd89 100644
--- a/docs/reference/hc_labels.html
+++ b/docs/reference/hc_labels.html
@@ -6,7 +6,7 @@
annotations that support labels.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_legend.html b/docs/reference/hc_legend.html
index e661cbc7..0029afad 100644
--- a/docs/reference/hc_legend.html
+++ b/docs/reference/hc_legend.html
@@ -10,7 +10,7 @@
custom legend symbols.">
+
Skip to contents
@@ -18,7 +18,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_loading.html b/docs/reference/hc_loading.html
index 368e8988..849538e4 100644
--- a/docs/reference/hc_loading.html
+++ b/docs/reference/hc_loading.html
@@ -14,7 +14,7 @@
object, but part of the lang object.'>
+
Skip to contents
@@ -22,7 +22,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_mapNavigation.html b/docs/reference/hc_mapNavigation.html
index f34c2cc0..2f73610b 100644
--- a/docs/reference/hc_mapNavigation.html
+++ b/docs/reference/hc_mapNavigation.html
@@ -2,7 +2,7 @@
Mapnavigation options for highcharter objects — hc_mapNavigation • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_motion.html b/docs/reference/hc_motion.html
index e04ce376..18dfff1d 100644
--- a/docs/reference/hc_motion.html
+++ b/docs/reference/hc_motion.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -97,7 +97,7 @@ Argumentshttps://github.com/larsac07/Motion-Highcharts-Plugin/wiki .
+Arguments defined in https://github.com/TorsteinHonsi/Motion-Highcharts-Plugin/wiki .
On this page
diff --git a/docs/reference/hc_navigator.html b/docs/reference/hc_navigator.html
index 12cbdaf0..7feb194a 100644
--- a/docs/reference/hc_navigator.html
+++ b/docs/reference/hc_navigator.html
@@ -6,7 +6,7 @@
out on parts of the data as well as panning across the dataset.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_pane.html b/docs/reference/hc_pane.html
index 01784fb2..df43f8f8 100644
--- a/docs/reference/hc_pane.html
+++ b/docs/reference/hc_pane.html
@@ -4,7 +4,7 @@
gauges and polar charts.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_plotOptions.html b/docs/reference/hc_plotOptions.html
index 2e46c585..ff3856ca 100644
--- a/docs/reference/hc_plotOptions.html
+++ b/docs/reference/hc_plotOptions.html
@@ -16,7 +16,7 @@
the series array.">
+
Skip to contents
@@ -24,7 +24,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_rangeSelector.html b/docs/reference/hc_rangeSelector.html
index 6180f0f8..f65f0025 100644
--- a/docs/reference/hc_rangeSelector.html
+++ b/docs/reference/hc_rangeSelector.html
@@ -8,7 +8,7 @@
boxes where min and max dates can be manually input.">
+
Skip to contents
@@ -16,7 +16,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_responsive.html b/docs/reference/hc_responsive.html
index a1b6db2e..e6823622 100644
--- a/docs/reference/hc_responsive.html
+++ b/docs/reference/hc_responsive.html
@@ -4,7 +4,7 @@
sizes. Each rule specifies additional chart options.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_rm_series.html b/docs/reference/hc_rm_series.html
index ef833db8..037a6b8f 100644
--- a/docs/reference/hc_rm_series.html
+++ b/docs/reference/hc_rm_series.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_scrollbar.html b/docs/reference/hc_scrollbar.html
index d1944a98..1d73a1c1 100644
--- a/docs/reference/hc_scrollbar.html
+++ b/docs/reference/hc_scrollbar.html
@@ -16,7 +16,7 @@
.highcharts-scrollbar-rifles and .highcharts-scrollbar-track.">
+
Skip to contents
@@ -24,7 +24,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_series.html b/docs/reference/hc_series.html
index de5acd46..494151cc 100644
--- a/docs/reference/hc_series.html
+++ b/docs/reference/hc_series.html
@@ -6,7 +6,7 @@
possible options for a series.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_size.html b/docs/reference/hc_size.html
index afed755e..5784ca84 100644
--- a/docs/reference/hc_size.html
+++ b/docs/reference/hc_size.html
@@ -2,7 +2,7 @@
Changing the size of a highchart object — hc_size • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_subtitle.html b/docs/reference/hc_subtitle.html
index afd969f4..1d7d3efc 100644
--- a/docs/reference/hc_subtitle.html
+++ b/docs/reference/hc_subtitle.html
@@ -8,7 +8,7 @@
Chart.setTitle method.">
+
Skip to contents
@@ -16,7 +16,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme.html b/docs/reference/hc_theme.html
index f09af572..412e3ec2 100644
--- a/docs/reference/hc_theme.html
+++ b/docs/reference/hc_theme.html
@@ -6,7 +6,7 @@
lines of code.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -98,7 +98,7 @@ Arguments
Details
- More examples and details in http://www.highcharts.com/docs/chart-design-and-style/themes .
+ More examples and details in https://www.highcharts.com/docs/chart-design-and-style/themes .
diff --git a/docs/reference/hc_theme_538.html b/docs/reference/hc_theme_538.html
index 1dca8db3..b5d5fd71 100644
--- a/docs/reference/hc_theme_538.html
+++ b/docs/reference/hc_theme_538.html
@@ -6,7 +6,7 @@
lines of code.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_theme_alone.html b/docs/reference/hc_theme_alone.html
index e7af98ce..294a5933 100644
--- a/docs/reference/hc_theme_alone.html
+++ b/docs/reference/hc_theme_alone.html
@@ -2,7 +2,7 @@
Alone theme for highcharts — hc_theme_alone • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_bloom.html b/docs/reference/hc_theme_bloom.html
index 37ce8def..8f1d6449 100644
--- a/docs/reference/hc_theme_bloom.html
+++ b/docs/reference/hc_theme_bloom.html
@@ -2,7 +2,7 @@
Bloomberg Graphics theme for highcharts — hc_theme_bloom • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_chalk.html b/docs/reference/hc_theme_chalk.html
index b5892661..612d25e1 100644
--- a/docs/reference/hc_theme_chalk.html
+++ b/docs/reference/hc_theme_chalk.html
@@ -2,7 +2,7 @@
Chalk theme for highcharts — hc_theme_chalk • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -90,7 +90,7 @@ Argumentshttps://www.amcharts.com/inspiration/hand-drawn/ .
+https://www.amcharts.com/demos/ .
diff --git a/docs/reference/hc_theme_darkunica.html b/docs/reference/hc_theme_darkunica.html
index e2f3a656..bdcbd0b1 100644
--- a/docs/reference/hc_theme_darkunica.html
+++ b/docs/reference/hc_theme_darkunica.html
@@ -2,7 +2,7 @@
Dark Unica theme for highcharts — hc_theme_darkunica • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_theme_db.html b/docs/reference/hc_theme_db.html
index 5a68ae14..f7d0b478 100644
--- a/docs/reference/hc_theme_db.html
+++ b/docs/reference/hc_theme_db.html
@@ -2,7 +2,7 @@
Dotabuff theme for highcharts — hc_theme_db • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_economist.html b/docs/reference/hc_theme_economist.html
index 5f985117..ebad80e3 100644
--- a/docs/reference/hc_theme_economist.html
+++ b/docs/reference/hc_theme_economist.html
@@ -2,7 +2,7 @@
Economist theme for highcharts — hc_theme_economist • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_elementary.html b/docs/reference/hc_theme_elementary.html
index 832a9ec7..a96effa8 100644
--- a/docs/reference/hc_theme_elementary.html
+++ b/docs/reference/hc_theme_elementary.html
@@ -2,7 +2,7 @@
Elementary (OS) theme for highcharts — hc_theme_elementary • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_ffx.html b/docs/reference/hc_theme_ffx.html
index 57971e26..2e3d398f 100644
--- a/docs/reference/hc_theme_ffx.html
+++ b/docs/reference/hc_theme_ffx.html
@@ -1,8 +1,8 @@
-Firefox theme for highcharts — hc_theme_ffx • highcharter Firefox theme for highcharts — hc_theme_ffx • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -77,7 +77,7 @@
diff --git a/docs/reference/hc_theme_flat.html b/docs/reference/hc_theme_flat.html
index 04461a7f..9126b53f 100644
--- a/docs/reference/hc_theme_flat.html
+++ b/docs/reference/hc_theme_flat.html
@@ -1,12 +1,12 @@
Flat theme for highcharts — hc_theme_flat • highcharter Flat theme for highcharts — hc_theme_flat • highcharter
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
@@ -83,7 +83,7 @@
diff --git a/docs/reference/hc_theme_flatdark.html b/docs/reference/hc_theme_flatdark.html
index d7e016cd..0348d904 100644
--- a/docs/reference/hc_theme_flatdark.html
+++ b/docs/reference/hc_theme_flatdark.html
@@ -2,7 +2,7 @@
Flatdark theme for highcharts — hc_theme_flatdark • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_theme_ft.html b/docs/reference/hc_theme_ft.html
index 44491d0d..059d5998 100644
--- a/docs/reference/hc_theme_ft.html
+++ b/docs/reference/hc_theme_ft.html
@@ -2,7 +2,7 @@
Financial Times theme for highcharts — hc_theme_ft • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_ggplot2.html b/docs/reference/hc_theme_ggplot2.html
index fa7d3e49..fc0d3933 100644
--- a/docs/reference/hc_theme_ggplot2.html
+++ b/docs/reference/hc_theme_ggplot2.html
@@ -2,7 +2,7 @@
ggplot2 theme for highcharts — hc_theme_ggplot2 • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_google.html b/docs/reference/hc_theme_google.html
index 63af03c4..97a5424e 100644
--- a/docs/reference/hc_theme_google.html
+++ b/docs/reference/hc_theme_google.html
@@ -2,7 +2,7 @@
Google theme for highcharts — hc_theme_google • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_gridlight.html b/docs/reference/hc_theme_gridlight.html
index 348fc58f..cd257193 100644
--- a/docs/reference/hc_theme_gridlight.html
+++ b/docs/reference/hc_theme_gridlight.html
@@ -2,7 +2,7 @@
Grid Light theme for highcharts — hc_theme_gridlight • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_handdrawn.html b/docs/reference/hc_theme_handdrawn.html
index 36ed9202..d54ce3b5 100644
--- a/docs/reference/hc_theme_handdrawn.html
+++ b/docs/reference/hc_theme_handdrawn.html
@@ -1,10 +1,10 @@
Hand Drawn theme for highcharts — hc_theme_handdrawn • highcharter
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -80,7 +80,7 @@
diff --git a/docs/reference/hc_theme_hcrt.html b/docs/reference/hc_theme_hcrt.html
index 29af9e07..5042dd94 100644
--- a/docs/reference/hc_theme_hcrt.html
+++ b/docs/reference/hc_theme_hcrt.html
@@ -2,7 +2,7 @@
Highcharter theme for highcharts — hc_theme_hcrt • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_theme_merge.html b/docs/reference/hc_theme_merge.html
index ccf326b7..5f70ec00 100644
--- a/docs/reference/hc_theme_merge.html
+++ b/docs/reference/hc_theme_merge.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_monokai.html b/docs/reference/hc_theme_monokai.html
index e2eb7aa1..c7da14c6 100644
--- a/docs/reference/hc_theme_monokai.html
+++ b/docs/reference/hc_theme_monokai.html
@@ -2,7 +2,7 @@
Monokai theme for highcharts — hc_theme_monokai • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_null.html b/docs/reference/hc_theme_null.html
index c0443b62..55df409c 100644
--- a/docs/reference/hc_theme_null.html
+++ b/docs/reference/hc_theme_null.html
@@ -2,7 +2,7 @@
Null theme for highcharts — hc_theme_null • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_theme_sandsignika.html b/docs/reference/hc_theme_sandsignika.html
index f6406387..c4d6c960 100644
--- a/docs/reference/hc_theme_sandsignika.html
+++ b/docs/reference/hc_theme_sandsignika.html
@@ -2,7 +2,7 @@
Sand Signika theme for highcharts — hc_theme_sandsignika • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -97,7 +97,7 @@ Exampleshighcharts_demo ( ) %>%
hc_add_theme ( hc_theme_sandsignika ( ) )
-
+
diff --git a/docs/reference/hc_theme_smpl.html b/docs/reference/hc_theme_smpl.html
index 0cfc7644..82cecb78 100644
--- a/docs/reference/hc_theme_smpl.html
+++ b/docs/reference/hc_theme_smpl.html
@@ -1,10 +1,10 @@
Simple theme for highcharts — hc_theme_smpl • highcharter
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -80,7 +80,7 @@
diff --git a/docs/reference/hc_theme_sparkline.html b/docs/reference/hc_theme_sparkline.html
index 302685a4..46249448 100644
--- a/docs/reference/hc_theme_sparkline.html
+++ b/docs/reference/hc_theme_sparkline.html
@@ -1,10 +1,10 @@
-
Sparkline theme for highcharts — hc_theme_sparkline • highcharter Sparkline theme for highcharts — hc_theme_sparkline • highcharter
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
@@ -79,8 +79,8 @@
diff --git a/docs/reference/hc_theme_superheroes.html b/docs/reference/hc_theme_superheroes.html
index e497aa96..2977a66b 100644
--- a/docs/reference/hc_theme_superheroes.html
+++ b/docs/reference/hc_theme_superheroes.html
@@ -2,7 +2,7 @@
Superheroes theme for highcharts — hc_theme_superheroes • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_theme_tufte.html b/docs/reference/hc_theme_tufte.html
index 64d633a1..d93cd016 100644
--- a/docs/reference/hc_theme_tufte.html
+++ b/docs/reference/hc_theme_tufte.html
@@ -2,7 +2,7 @@
Tufte theme for highcharts — hc_theme_tufte • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_title.html b/docs/reference/hc_title.html
index c86a9bc1..eb83baef 100644
--- a/docs/reference/hc_title.html
+++ b/docs/reference/hc_title.html
@@ -2,7 +2,7 @@
Title options for highcharter objects — hc_title • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_tooltip.html b/docs/reference/hc_tooltip.html
index 7e57816a..c7e74665 100644
--- a/docs/reference/hc_tooltip.html
+++ b/docs/reference/hc_tooltip.html
@@ -4,7 +4,7 @@
series or point.">
+
Skip to contents
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -96,10 +96,10 @@ Argumentshttps://api.highcharts.com/highcharts/tooltip .
sort
Logical value to implement sort according this.point
-http://stackoverflow.com/a/16954666/829971 .
+https://stackoverflow.com/a/16954666/829971 .
table
Logical value to implement table in tooltip:
-http://stackoverflow.com/a/22327749/829971 .
+https://stackoverflow.com/a/22327749/829971 .
diff --git a/docs/reference/hc_xAxis.html b/docs/reference/hc_xAxis.html
index 94bd4127..05d15c03 100644
--- a/docs/reference/hc_xAxis.html
+++ b/docs/reference/hc_xAxis.html
@@ -10,7 +10,7 @@
access to the axis.">
+
Skip to contents
@@ -18,7 +18,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hc_yAxis.html b/docs/reference/hc_yAxis.html
index 7bf9fb4a..4e7d3973 100644
--- a/docs/reference/hc_yAxis.html
+++ b/docs/reference/hc_yAxis.html
@@ -12,7 +12,7 @@
access to the axis.">
+
Skip to contents
@@ -20,7 +20,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hc_zAxis.html b/docs/reference/hc_zAxis.html
index b564f425..00cc6adf 100644
--- a/docs/reference/hc_zAxis.html
+++ b/docs/reference/hc_zAxis.html
@@ -6,7 +6,7 @@
access to the axis.">
+
Skip to contents
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcaes.html b/docs/reference/hcaes.html
index 15ec7e25..2539c5e1 100644
--- a/docs/reference/hcaes.html
+++ b/docs/reference/hcaes.html
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcaes_string.html b/docs/reference/hcaes_string.html
index 293018e8..eddc33f7 100644
--- a/docs/reference/hcaes_string.html
+++ b/docs/reference/hcaes_string.html
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcboxplot.html b/docs/reference/hcboxplot.html
index b24f0ef4..8f62dd46 100644
--- a/docs/reference/hcboxplot.html
+++ b/docs/reference/hcboxplot.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -96,7 +96,7 @@ Argumentshttp://api.highcharts.com/highcharts#series .
+Additional arguments for the data series https://api.highcharts.com/highcharts/series .
Details
diff --git a/docs/reference/hchart.survfit.html b/docs/reference/hchart.survfit.html
index 93e5c86a..2007faab 100644
--- a/docs/reference/hchart.survfit.html
+++ b/docs/reference/hchart.survfit.html
@@ -2,7 +2,7 @@
Plot survival curves using Highcharts — hchart.survfit • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
-
0.9.3.9000
+
0.9.4
diff --git a/docs/reference/hciconarray.html b/docs/reference/hciconarray.html
index 553f7455..5a098dc1 100644
--- a/docs/reference/hciconarray.html
+++ b/docs/reference/hciconarray.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -98,7 +98,7 @@ Argumentshttp://api.highcharts.com/highcharts#series .
+Additional arguments for the data series https://api.highcharts.com/highcharts/series .
On this page
diff --git a/docs/reference/hcmap.html b/docs/reference/hcmap.html
index 03f11a99..08437d82 100644
--- a/docs/reference/hcmap.html
+++ b/docs/reference/hcmap.html
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -116,7 +116,7 @@ Argumentshttp://api.highcharts.com/highcharts#series ).
+(https://api.highcharts.com/highcharts/series ).
diff --git a/docs/reference/hcpxy_add_point.html b/docs/reference/hcpxy_add_point.html
index c600d12d..17cdfe5c 100644
--- a/docs/reference/hcpxy_add_point.html
+++ b/docs/reference/hcpxy_add_point.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_add_series.html b/docs/reference/hcpxy_add_series.html
index 9ec19a56..eebee896 100644
--- a/docs/reference/hcpxy_add_series.html
+++ b/docs/reference/hcpxy_add_series.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_loading.html b/docs/reference/hcpxy_loading.html
index e764a023..3ff1119d 100644
--- a/docs/reference/hcpxy_loading.html
+++ b/docs/reference/hcpxy_loading.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_redraw.html b/docs/reference/hcpxy_redraw.html
index 16a34f78..18ad4a20 100644
--- a/docs/reference/hcpxy_redraw.html
+++ b/docs/reference/hcpxy_redraw.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_remove_point.html b/docs/reference/hcpxy_remove_point.html
index 375ccd09..814ecb0b 100644
--- a/docs/reference/hcpxy_remove_point.html
+++ b/docs/reference/hcpxy_remove_point.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_remove_series.html b/docs/reference/hcpxy_remove_series.html
index 56ca63ed..672ca726 100644
--- a/docs/reference/hcpxy_remove_series.html
+++ b/docs/reference/hcpxy_remove_series.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_set_data.html b/docs/reference/hcpxy_set_data.html
index c5e93d27..5c8eaa27 100644
--- a/docs/reference/hcpxy_set_data.html
+++ b/docs/reference/hcpxy_set_data.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_update.html b/docs/reference/hcpxy_update.html
index 8287118f..8562263a 100644
--- a/docs/reference/hcpxy_update.html
+++ b/docs/reference/hcpxy_update.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_update_point.html b/docs/reference/hcpxy_update_point.html
index 32947e1b..f6e3ff60 100644
--- a/docs/reference/hcpxy_update_point.html
+++ b/docs/reference/hcpxy_update_point.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcpxy_update_series.html b/docs/reference/hcpxy_update_series.html
index 8722bc90..b7ca4fda 100644
--- a/docs/reference/hcpxy_update_series.html
+++ b/docs/reference/hcpxy_update_series.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hcspark.html b/docs/reference/hcspark.html
index e61a83d3..97c5a0f4 100644
--- a/docs/reference/hcspark.html
+++ b/docs/reference/hcspark.html
@@ -2,7 +2,7 @@
Shortcut to make spkarlines — hcspark • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -92,7 +92,7 @@ Argumentshttp://api.highcharts.com/highcharts#series .
+Additional arguments for the data series https://api.highcharts.com/highcharts/series .
Value
@@ -109,7 +109,7 @@
Examplesif ( FALSE ) {
library ( tidyverse )
-library ( highcharter )
+library ( highcharter )
library ( RColorBrewer )
tibble (
diff --git a/docs/reference/hex_to_rgba.html b/docs/reference/hex_to_rgba.html
index 1957de88..3b6adf08 100644
--- a/docs/reference/hex_to_rgba.html
+++ b/docs/reference/hex_to_rgba.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/highchart.html b/docs/reference/highchart.html
index d6793964..34042e98 100644
--- a/docs/reference/highchart.html
+++ b/docs/reference/highchart.html
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -103,7 +103,7 @@ Usage
Arguments
hc_opts
A list
object containing options defined as
-http://api.highcharts.com/highcharts .
+https://api.highcharts.com/highcharts/ .
theme
A hc_theme
class object-
type
diff --git a/docs/reference/highchart2.html b/docs/reference/highchart2.html
index ff969cf1..f8013a55 100644
--- a/docs/reference/highchart2.html
+++ b/docs/reference/highchart2.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -105,7 +105,7 @@ Usage
Arguments
hc_opts
A list
object containing options defined as
-http://api.highcharts.com/highcharts .
+https://api.highcharts.com/highcharts/ .
theme
A hc_theme
class object.
type
diff --git a/docs/reference/highchartOutput.html b/docs/reference/highchartOutput.html
index bc7d6c65..83627636 100644
--- a/docs/reference/highchartOutput.html
+++ b/docs/reference/highchartOutput.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/highchartProxy.html b/docs/reference/highchartProxy.html
index 3d7e9d47..ef523c5a 100644
--- a/docs/reference/highchartProxy.html
+++ b/docs/reference/highchartProxy.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/highcharter-exports.html b/docs/reference/highcharter-exports.html
index 6f9189e5..360a77f3 100644
--- a/docs/reference/highcharter-exports.html
+++ b/docs/reference/highcharter-exports.html
@@ -14,7 +14,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/highcharter.html b/docs/reference/highcharter.html
index 9858616a..1a102e78 100644
--- a/docs/reference/highcharter.html
+++ b/docs/reference/highcharter.html
@@ -1,9 +1,9 @@
-An htmlwidget interface to the
Highcharts javascript chart library — highcharter • highcharter Chart a demo for testing themes — highcharts_demo • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/hw_grid.html b/docs/reference/hw_grid.html
index c8921883..9c7db7c8 100644
--- a/docs/reference/hw_grid.html
+++ b/docs/reference/hw_grid.html
@@ -5,7 +5,7 @@
grid.arrange from gridExtra.'>
+
Skip to contents
@@ -13,7 +13,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/index.html b/docs/reference/index.html
index 28d7c058..4ece3751 100644
--- a/docs/reference/index.html
+++ b/docs/reference/index.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/is.hexcolor.html b/docs/reference/is.hexcolor.html
index f20a8806..d66eb1f1 100644
--- a/docs/reference/is.hexcolor.html
+++ b/docs/reference/is.hexcolor.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/is.highchart.html b/docs/reference/is.highchart.html
index afb19121..c76f0b19 100644
--- a/docs/reference/is.highchart.html
+++ b/docs/reference/is.highchart.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/libs/highchart-binding-0.9.3.9000/highchart.js b/docs/reference/libs/highchart-binding-0.9.4/highchart.js
similarity index 100%
rename from docs/reference/libs/highchart-binding-0.9.3.9000/highchart.js
rename to docs/reference/libs/highchart-binding-0.9.4/highchart.js
diff --git a/docs/reference/list_parse.html b/docs/reference/list_parse.html
index a30951cb..6b0ef790 100644
--- a/docs/reference/list_parse.html
+++ b/docs/reference/list_parse.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/mountains_panorama.html b/docs/reference/mountains_panorama.html
index 0219f433..1be953cf 100644
--- a/docs/reference/mountains_panorama.html
+++ b/docs/reference/mountains_panorama.html
@@ -1,6 +1,6 @@
-Visual comparison of Mountains Panorama — mountains_panorama • highcharter Visual comparison of Mountains Panorama — mountains_panorama • highcharter Helper to create charts in tooltips. — tooltip_chart • highcharter
+
Skip to contents
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
@@ -90,7 +90,7 @@ Argumentshttp://api.highcharts.com/highcharts
+A list of options using the https://api.highcharts.com/highcharts/
syntax.
width
A numeric input in pixels indicating the with of the tooltip.
@@ -110,6 +110,7 @@ Examplesrequire ( purrr )
require ( tidyr )
require ( gapminder )
+#> Loading required package: gapminder
data ( gapminder , package = "gapminder" )
gp <- gapminder %>%
@@ -144,15 +145,15 @@ Examples
hc %>%
hc_tooltip ( useHTML = TRUE , pointFormatter = tooltip_chart ( accesor = "ttdata" ) )
-
-
+
+
hc %>%
hc_tooltip ( useHTML = TRUE , pointFormatter = tooltip_chart (
accesor = "ttdata" ,
hc_opts = list ( chart = list ( type = "column" ) )
) )
-
-
+
+
hc %>%
hc_tooltip (
useHTML = TRUE ,
@@ -166,8 +167,8 @@ Examples )
)
)
-
-
+
+
hc %>%
hc_tooltip (
useHTML = TRUE ,
@@ -179,8 +180,8 @@ Examples )
)
)
-
-
+
+
diff --git a/docs/reference/tooltip_table.html b/docs/reference/tooltip_table.html
index aefa89bc..da4fa129 100644
--- a/docs/reference/tooltip_table.html
+++ b/docs/reference/tooltip_table.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/unemployment.html b/docs/reference/unemployment.html
index eecc91f9..e6df3970 100644
--- a/docs/reference/unemployment.html
+++ b/docs/reference/unemployment.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/uscountygeojson.html b/docs/reference/uscountygeojson.html
index 40607ddc..edc2cbb6 100644
--- a/docs/reference/uscountygeojson.html
+++ b/docs/reference/uscountygeojson.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/usgeojson.html b/docs/reference/usgeojson.html
index 6e4c56bf..c1305d9f 100644
--- a/docs/reference/usgeojson.html
+++ b/docs/reference/usgeojson.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/vaccines.html b/docs/reference/vaccines.html
index a1f7af10..77e47afa 100644
--- a/docs/reference/vaccines.html
+++ b/docs/reference/vaccines.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/weather.html b/docs/reference/weather.html
index daa46a3d..669b882c 100644
--- a/docs/reference/weather.html
+++ b/docs/reference/weather.html
@@ -10,7 +10,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/docs/reference/worldgeojson.html b/docs/reference/worldgeojson.html
index a949f410..8d258279 100644
--- a/docs/reference/worldgeojson.html
+++ b/docs/reference/worldgeojson.html
@@ -12,7 +12,7 @@
highcharter
- 0.9.3.9000
+ 0.9.4
diff --git a/man/citytemp.Rd b/man/citytemp.Rd
index 0098f593..92ed25fb 100644
--- a/man/citytemp.Rd
+++ b/man/citytemp.Rd
@@ -11,7 +11,7 @@ A \code{data frame} with 12 observations and 5 variables.
citytemp
}
\description{
-This data comes from the \url{http://www.highcharts.com/} examples.
+This data comes from the \url{https://www.highcharts.com/} examples.
}
\section{Variables}{
diff --git a/man/citytemp_long.Rd b/man/citytemp_long.Rd
index 1ffa48bc..86ea3be3 100644
--- a/man/citytemp_long.Rd
+++ b/man/citytemp_long.Rd
@@ -11,7 +11,7 @@ A \code{data frame} with 36 observations and 3 variables.
citytemp_long
}
\description{
-This data comes from the \url{http://www.highcharts.com/} examples.
+This data comes from the \url{https://www.highcharts.com/} examples.
}
\section{Variables}{
diff --git a/man/hc_add_event_point.Rd b/man/hc_add_event_point.Rd
index 9fdc9a42..7b0695f4 100644
--- a/man/hc_add_event_point.Rd
+++ b/man/hc_add_event_point.Rd
@@ -15,7 +15,7 @@ hc_add_event_series(hc, series = "series", event = "click")
\item{series}{The name of type of series to apply the event.}
\item{event}{The name of event: click, mouseOut, mouseOver. See
-\url{http://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select}
+\url{https://api.highcharts.com/highcharts/plotOptions.areasplinerange.point.events.select}
for more details.}
}
\description{
diff --git a/man/hc_add_series.data.frame.Rd b/man/hc_add_series.data.frame.Rd
index ff4849b9..07c0c800 100644
--- a/man/hc_add_series.data.frame.Rd
+++ b/man/hc_add_series.data.frame.Rd
@@ -18,7 +18,7 @@
\item{fast}{convert to json during the composition of a highchart object}
\item{...}{Arguments defined in
-\url{http://api.highcharts.com/highcharts#chart}.}
+\url{https://api.highcharts.com/highcharts/chart}.}
}
\description{
hc_add_series for data frames objects
diff --git a/man/hc_add_series.forecast.Rd b/man/hc_add_series.forecast.Rd
index dab59cfb..e66d630f 100644
--- a/man/hc_add_series.forecast.Rd
+++ b/man/hc_add_series.forecast.Rd
@@ -28,7 +28,7 @@
\item{name}{The name of the series.}
\item{...}{Arguments defined in
-\url{http://api.highcharts.com/highcharts#chart}.}
+\url{https://api.highcharts.com/highcharts/chart}.}
}
\description{
hc_add_series for forecast objects
diff --git a/man/hc_add_series.lm.Rd b/man/hc_add_series.lm.Rd
index 30f20bce..ea93abc9 100644
--- a/man/hc_add_series.lm.Rd
+++ b/man/hc_add_series.lm.Rd
@@ -35,7 +35,7 @@
\item{fillOpacity}{fillOpacity to the confidence interval.}
\item{...}{Arguments defined in
-\url{http://api.highcharts.com/highcharts#chart}.}
+\url{https://api.highcharts.com/highcharts/chart}.}
}
\description{
hc_add_series for lm and loess objects
diff --git a/man/hc_add_series_map.Rd b/man/hc_add_series_map.Rd
index 6f0e10c4..568a4b61 100644
--- a/man/hc_add_series_map.Rd
+++ b/man/hc_add_series_map.Rd
@@ -19,7 +19,7 @@ required.}
\item{joinBy}{What property to join the \code{map} and \code{df}}
\item{...}{Additional shared arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}).}
+(\url{https://api.highcharts.com/highcharts/series}).}
}
\description{
Add a map series
diff --git a/man/hc_motion.Rd b/man/hc_motion.Rd
index 3e85cc55..991b03b0 100644
--- a/man/hc_motion.Rd
+++ b/man/hc_motion.Rd
@@ -13,7 +13,7 @@ hc_motion(hc, enabled = TRUE, startIndex = 0, ...)
\item{startIndex}{start index, default to 0.}
-\item{...}{Arguments defined in \url{https://github.com/larsac07/Motion-Highcharts-Plugin/wiki}.}
+\item{...}{Arguments defined in \url{https://github.com/TorsteinHonsi/Motion-Highcharts-Plugin/wiki}.}
}
\description{
The Motion Highcharts Plugin adds an interactive HTML5 player
diff --git a/man/hc_theme.Rd b/man/hc_theme.Rd
index 56b6983f..be1a6dc2 100644
--- a/man/hc_theme.Rd
+++ b/man/hc_theme.Rd
@@ -15,7 +15,7 @@ There are some exiting themes so you can apply style to charts with few
lines of code.
}
\details{
-More examples and details in \url{http://www.highcharts.com/docs/chart-design-and-style/themes}.
+More examples and details in \url{https://www.highcharts.com/docs/chart-design-and-style/themes}.
}
\examples{
diff --git a/man/hc_theme_chalk.Rd b/man/hc_theme_chalk.Rd
index 6f0f0782..f80b8cf8 100644
--- a/man/hc_theme_chalk.Rd
+++ b/man/hc_theme_chalk.Rd
@@ -10,7 +10,7 @@ hc_theme_chalk(...)
\item{...}{A named parameters to modify the theme.
Chalk theme for highcharts was inspired by
-\url{https://www.amcharts.com/inspiration/hand-drawn/}.}
+\url{https://www.amcharts.com/demos/}.}
}
\description{
Chalk theme for highcharts
diff --git a/man/hc_theme_ffx.Rd b/man/hc_theme_ffx.Rd
index 6385f0f1..38f238ec 100644
--- a/man/hc_theme_ffx.Rd
+++ b/man/hc_theme_ffx.Rd
@@ -10,7 +10,7 @@ hc_theme_ffx(...)
\item{...}{A named parameters to modify the theme.}
}
\description{
-Firefox theme was inspired by \url{https://www.mozilla.org/en-US/styleguide/}.
+Firefox theme was inspired by \url{https://mozilla.design/}.
}
\examples{
diff --git a/man/hc_theme_flat.Rd b/man/hc_theme_flat.Rd
index a89fec3d..3c0f4ba8 100644
--- a/man/hc_theme_flat.Rd
+++ b/man/hc_theme_flat.Rd
@@ -12,7 +12,7 @@ hc_theme_flat(...)
\description{
Flat and flatdark theme is inspired by
\url{https://github.com/chriskempson/base16} and
-\url{https://github.com/cttobin/ggthemr#flat}
+\url{https://github.com/Mikata-Project/ggthemr#flat}
}
\examples{
diff --git a/man/hc_theme_handdrawn.Rd b/man/hc_theme_handdrawn.Rd
index 009ddca8..ad6dee2a 100644
--- a/man/hc_theme_handdrawn.Rd
+++ b/man/hc_theme_handdrawn.Rd
@@ -11,7 +11,7 @@ hc_theme_handdrawn(...)
}
\description{
Hand Drawn theme for highcharts. Inspired by
-\url{https://www.amcharts.com/inspiration/hand-drawn/}.
+\url{https://www.amcharts.com/demos/}.
}
\examples{
diff --git a/man/hc_theme_smpl.Rd b/man/hc_theme_smpl.Rd
index e7406cb7..2c2d8acb 100644
--- a/man/hc_theme_smpl.Rd
+++ b/man/hc_theme_smpl.Rd
@@ -11,7 +11,7 @@ hc_theme_smpl(...)
}
\description{
Theme smpl design is inspired by \url{https://github.com/hrbrmstr/hrbrmisc/blob/master/R/themes.r}
-and color by \url{https://www.materialui.co/flatuicolors}.
+and color by \url{https://materialui.co/flatuicolors}.
}
\examples{
diff --git a/man/hc_theme_sparkline.Rd b/man/hc_theme_sparkline.Rd
index 5248e181..f132e120 100644
--- a/man/hc_theme_sparkline.Rd
+++ b/man/hc_theme_sparkline.Rd
@@ -10,8 +10,8 @@ hc_theme_sparkline(...)
\item{...}{A named parameters to modify the theme.}
}
\description{
-Sparkline theme is based on \url{http://www.highcharts.com/demo/sparkline}
-and this post \url{http://jkunst.com/blog/posts/2020-06-26-valuebox-and-sparklines/}.
+Sparkline theme is based on \url{https://www.highcharts.com/demo/sparkline}
+and this post \url{https://jkunst.com/blog/posts/2020-06-26-valuebox-and-sparklines/}.
}
\examples{
diff --git a/man/hc_tooltip.Rd b/man/hc_tooltip.Rd
index e374ec1f..e5a58928 100644
--- a/man/hc_tooltip.Rd
+++ b/man/hc_tooltip.Rd
@@ -12,10 +12,10 @@ hc_tooltip(hc, ..., sort = FALSE, table = FALSE)
\item{...}{Arguments defined in \url{https://api.highcharts.com/highcharts/tooltip}.}
\item{sort}{Logical value to implement sort according \code{this.point}
-\url{http://stackoverflow.com/a/16954666/829971}.}
+\url{https://stackoverflow.com/a/16954666/829971}.}
\item{table}{Logical value to implement table in tooltip:
-\url{http://stackoverflow.com/a/22327749/829971}.}
+\url{https://stackoverflow.com/a/22327749/829971}.}
}
\description{
Options for the tooltip that appears when the user hovers over a
diff --git a/man/hcboxplot.Rd b/man/hcboxplot.Rd
index 8478d4f2..35ae2fa4 100644
--- a/man/hcboxplot.Rd
+++ b/man/hcboxplot.Rd
@@ -15,7 +15,7 @@ hcboxplot(x = NULL, var = NULL, var2 = NULL, outliers = TRUE, ...)
\item{outliers}{A boolean value to show or not the outliers.}
-\item{...}{Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.}
+\item{...}{Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.}
}
\description{
Shortcut to make a boxplot
diff --git a/man/hchart.Rd b/man/hchart.Rd
index f71e48d9..e89ee8af 100644
--- a/man/hchart.Rd
+++ b/man/hchart.Rd
@@ -10,7 +10,7 @@ hchart(object, ...)
\item{object}{A R object.}
\item{...}{Additional arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}).}
+(\url{https://api.highcharts.com/highcharts/series}).}
}
\description{
\code{hchart} uses \code{highchart} to draw a particular plot for an
diff --git a/man/hciconarray.Rd b/man/hciconarray.Rd
index 38c04b5d..5f1ed596 100644
--- a/man/hciconarray.Rd
+++ b/man/hciconarray.Rd
@@ -17,7 +17,7 @@ hciconarray(labels, counts, rows = NULL, icons = NULL, size = 4, ...)
\item{size}{Font size}
-\item{...}{Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.}
+\item{...}{Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.}
}
\description{
Shortcut to make icon arrays charts
diff --git a/man/hcmap.Rd b/man/hcmap.Rd
index bc4b1722..58827bc3 100644
--- a/man/hcmap.Rd
+++ b/man/hcmap.Rd
@@ -30,7 +30,7 @@ the joinBy and value are needed.}
\item{joinBy}{What property to join the \code{map} and \code{df}.}
\item{...}{Additional shared arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}).}
+(\url{https://api.highcharts.com/highcharts/series}).}
}
\description{
Shortcut for create map from \url{https://code.highcharts.com/mapdata/}
diff --git a/man/hcparcords.Rd b/man/hcparcords.Rd
index 6aa2c476..92776536 100644
--- a/man/hcparcords.Rd
+++ b/man/hcparcords.Rd
@@ -10,7 +10,7 @@ hcparcords(df, ...)
\item{df}{A data frame object.}
\item{...}{Additional shared arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}) for the
+(\url{https://api.highcharts.com/highcharts/series}) for the
\code{hchar.data.frame} function.}
}
\description{
diff --git a/man/hcspark.Rd b/man/hcspark.Rd
index c8464e28..7c43e65e 100644
--- a/man/hcspark.Rd
+++ b/man/hcspark.Rd
@@ -11,7 +11,7 @@ hcspark(x = NULL, type = NULL, ...)
\item{type}{Type sparkline: line, bar, etc.}
-\item{...}{Additional arguments for the data series \url{http://api.highcharts.com/highcharts#series}.}
+\item{...}{Additional arguments for the data series \url{https://api.highcharts.com/highcharts/series}.}
}
\description{
Shortcut to make spkarlines
diff --git a/man/hctreemap.Rd b/man/hctreemap.Rd
index 4ad6727a..bd82125d 100644
--- a/man/hctreemap.Rd
+++ b/man/hctreemap.Rd
@@ -10,7 +10,7 @@ hctreemap(tm, ...)
\item{tm}{A \code{treemap} object from the treemap package.}
\item{...}{Additional shared arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}).}
+(\url{https://api.highcharts.com/highcharts/series}).}
}
\description{
This function helps to create highcharts treemaps from \code{treemap} objects
diff --git a/man/hctreemap2.Rd b/man/hctreemap2.Rd
index b7e57a76..c006b019 100644
--- a/man/hctreemap2.Rd
+++ b/man/hctreemap2.Rd
@@ -16,7 +16,7 @@ hctreemap2(data, group_vars, size_var, color_var = NULL, ...)
\item{color_var}{string name of column containing numeric data to color by. defaults to same column as \code{size_var}}
\item{...}{additional shared arguments for the data series
-(\url{http://api.highcharts.com/highcharts#series}).}
+(\url{https://api.highcharts.com/highcharts/series}).}
}
\value{
highchart plot object
diff --git a/man/highchart.Rd b/man/highchart.Rd
index 77e6e6a8..1dcc84d5 100644
--- a/man/highchart.Rd
+++ b/man/highchart.Rd
@@ -16,7 +16,7 @@ highchart(
}
\arguments{
\item{hc_opts}{A \code{list} object containing options defined as
-\url{http://api.highcharts.com/highcharts}.}
+\url{https://api.highcharts.com/highcharts/}.}
\item{theme}{A \code{hc_theme} class object-}
diff --git a/man/highchart2.Rd b/man/highchart2.Rd
index d8d6684f..71e76f08 100644
--- a/man/highchart2.Rd
+++ b/man/highchart2.Rd
@@ -25,7 +25,7 @@ highchartzero(
}
\arguments{
\item{hc_opts}{A \code{list} object containing options defined as
-\url{http://api.highcharts.com/highcharts}.}
+\url{https://api.highcharts.com/highcharts/}.}
\item{theme}{A \code{hc_theme} class object.}
diff --git a/man/highcharter.Rd b/man/highcharter.Rd
index 8ed47aef..0e8c2fea 100644
--- a/man/highcharter.Rd
+++ b/man/highcharter.Rd
@@ -6,7 +6,7 @@
\title{An \code{htmlwidget} interface to the
Highcharts javascript chart library}
\description{
-Highcharts \url{http://www.highcharts.com/} is a mature javascript
+Highcharts \url{https://www.highcharts.com/} is a mature javascript
charting library. Highcharts provide a various type of charts, from
scatters to heatmaps or treemaps.
}
diff --git a/man/mountains_panorama.Rd b/man/mountains_panorama.Rd
index c96e2e1f..b446c16f 100644
--- a/man/mountains_panorama.Rd
+++ b/man/mountains_panorama.Rd
@@ -11,7 +11,7 @@ A \code{data frame} with 91 observations and 3 variables.
mountains_panorama
}
\description{
-This data comes from the \url{http://www.highcharts.com/} examples:
+This data comes from the \url{https://www.highcharts.com/} examples:
https://www.highcharts.com/demo/3d-area-multiple
}
\section{Variables}{
diff --git a/man/tooltip_chart.Rd b/man/tooltip_chart.Rd
index b30af4c0..4b60821e 100644
--- a/man/tooltip_chart.Rd
+++ b/man/tooltip_chart.Rd
@@ -9,7 +9,7 @@ tooltip_chart(accesor = NULL, hc_opts = NULL, width = 250, height = 150)
\arguments{
\item{accesor}{A string indicating the name of the column where the data is.}
-\item{hc_opts}{A list of options using the \url{http://api.highcharts.com/highcharts}
+\item{hc_opts}{A list of options using the \url{https://api.highcharts.com/highcharts/}
syntax.}
\item{width}{A numeric input in pixels indicating the with of the tooltip.}
diff --git a/pkgdown/index.html b/pkgdown/index.html
index 4db5a20d..678080c3 100644
--- a/pkgdown/index.html
+++ b/pkgdown/index.html
@@ -73,7 +73,7 @@
-
+