Updated ApexCharts.js to 3.26.1

This commit is contained in:
pvictor 2021-04-19 10:16:24 +02:00
parent 14b2a2cc74
commit 4352d95f97
No known key found for this signature in database
GPG Key ID: 31124C9F3F9268B8
7 changed files with 10 additions and 38 deletions

View File

@ -1,5 +1,5 @@
Package: apexcharter
Version: 0.1.8.9300
Version: 0.1.8.9400
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

@ -1,7 +1,7 @@
apexcharter 0.2.0
==================
* Updated ApexCharts.js to 3.23.1
* Updated ApexCharts.js to 3.26.1
* New functions `ax_facet_wrap()` and `ax_facet_grid()` to create faceting charts.
* New function `apex_grid()` to combine several charts in a grid.

View File

@ -1,6 +1,6 @@
dependencies:
- name: apexcharts
version: 3.26.0
version: 3.26.1
src: htmlwidgets/lib/apexcharts-3.26
script: apexcharts.min.js
- name: apexcharter-css

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -21,7 +21,7 @@ The objective of this vignette is to show how to quickly build data visualizatio
Data used are from `ggplot2` package.
```{r message=FALSE, warning=FALSE}
```{r packages, message=FALSE, warning=FALSE}
library(ggplot2)
library(scales)
library(apexcharter)
@ -187,7 +187,7 @@ apex(data = new_mtcars, type = "radar", mapping = aes(x = model, y = value, grou
With some custom options for color mapping:
```{r}
```{r polar-area}
apex(mtcars, aes(rownames(mtcars), mpg), type = "polarArea") %>%
ax_legend(show = FALSE) %>%
ax_colors(col_numeric("Blues", domain = NULL)(mtcars$mpg)) %>%
@ -231,7 +231,7 @@ apex(mpg, aes(x = manufacturer), "treemap")
Create a candlestick chart with:
```{r}
```{r candlestick}
data("candles", package = "apexcharter")
apex(