updated apexcharts to 3.27.3

This commit is contained in:
pvictor 2021-07-23 10:35:05 +02:00
parent cefba791f7
commit 251df70b2b
No known key found for this signature in database
GPG Key ID: 31124C9F3F9268B8
4 changed files with 19 additions and 5 deletions

View File

@ -1,5 +1,5 @@
Package: apexcharter
Version: 0.2.0.9000
Version: 0.2.0.9100
Title: Create Interactive Chart with the JavaScript 'ApexCharts' Library
Description: Provides an 'htmlwidgets' interface to 'apexcharts.js'.
'Apexcharts' is a modern JavaScript charting library to build interactive charts and visualizations with simple API.

View File

@ -154,7 +154,7 @@ make_series <- function(mapdata, mapping, type = NULL, serie_name = NULL, force_
if (is.null(serie_name) & !is.null(mapping$y))
serie_name <- rlang::as_label(mapping$y)
series <- list(dropNulls(list(
name = serie_name,
name = as.character(serie_name),
type = multi_type(type),
data = parse_df(mapdata, add_names = add_names)
)))
@ -171,7 +171,7 @@ make_series <- function(mapdata, mapping, type = NULL, serie_name = NULL, force_
data <- data[, setdiff(names(data), "group"), drop = FALSE]
data <- data[order(match(x = data[["x"]], table = x_order, nomatch = 0L)), , drop = FALSE]
dropNulls(list(
name = x,
name = as.character(x),
type = multi_type(type),
data = parse_df(
data = data,

View File

@ -1,7 +1,7 @@
dependencies:
- name: apexcharts
version: 3.26.3
src: htmlwidgets/assets/apexcharts-3.26
version: 3.27.3
src: htmlwidgets/assets/apexcharts-3.27
script: apexcharts.min.js
- name: apexcharter-css
version: 0.1.0

File diff suppressed because one or more lines are too long