diff --git a/NEWS.md b/NEWS.md index 47c68fc..fae92a8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,5 @@ -apexcharter 0.1.0 +apexcharter 0.1.1 ================== -* New release: create interactive chart with the JavaScript 'ApexCharts' library +* First CRAN release: create interactive chart with the JavaScript 'ApexCharts' library. Types of graphics available : bars, columns, splines, lines, scatter, pie, donuts, heatmap, gauge. diff --git a/README.md b/README.md index 1b7cba8..ae731c0 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ > Htmlwidget for [apexcharts.js](https://github.com/apexcharts/apexcharts.js) : A modern JavaScript charting library to build interactive charts and visualizations with simple API. +[![version](http://www.r-pkg.org/badges/version/apexcharter)](https://CRAN.R-project.org/package=apexcharter) [![Travis build status](https://travis-ci.org/dreamRs/apexcharter.svg?branch=master)](https://travis-ci.org/dreamRs/apexcharter) [![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing) diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 24e0a1c..01a0b4c 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -60,7 +60,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -120,38 +120,8 @@

License

-
R PACKAGE
-=========
-
-YEAR: 2019
-COPYRIGHT HOLDER: dreamRs
-
-
-ApexCharts.js
-=============
-
-The MIT License (MIT)
-
-Copyright (c) 2018 ApexCharts
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
+
YEAR: 2019
+COPYRIGHT HOLDER: Victor Perrier
 
diff --git a/docs/articles/index.html b/docs/articles/index.html index 2c2a920..80a80ea 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -60,7 +60,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/articles/labs.html b/docs/articles/labs.html index 433d396..39b5585 100644 --- a/docs/articles/labs.html +++ b/docs/articles/labs.html @@ -30,7 +30,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -83,7 +83,7 @@ -
+

@@ -124,8 +124,8 @@
apex(data = n_cut, type = "column", mapping = aes(x = cut, y = n)) %>% 
   ax_title(text = "Cut distribution") %>% 
   ax_subtitle(text = "Data from ggplot2")
-
-

With same options than for title:

+
+

With same options than for title:

apex(data = n_cut, type = "column", mapping = aes(x = cut, y = n)) %>% 
   ax_title(
     text = "Cut distribution", 
@@ -137,8 +137,8 @@
     align = "center",
     style = list(fontSize = "16px", color = "#BDBDBD")
   )
-
-

Full list of parameters is available here : https://apexcharts.com/docs/options/subtitle/

+
+

Full list of parameters is available here : https://apexcharts.com/docs/options/subtitle/

@@ -146,8 +146,8 @@
apex(data = n_cut, type = "column", mapping = aes(x = cut, y = n)) %>% 
   ax_yaxis(title = list(text = "Count")) %>% 
   ax_xaxis(title = list(text = "Cut"))
-
-

With some options:

+
+

With some options:

apex(data = n_cut, type = "column", mapping = aes(x = cut, y = n)) %>% 
   ax_yaxis(title = list(
     text = "Count",
@@ -157,8 +157,8 @@
     text = "Cut", 
     style = list(fontSize = "14px", color = "#BDBDBD")
   ))
-
- +
+

diff --git a/docs/articles/labs_files/apexcharter-binding-0.1.1/apexcharter.js b/docs/articles/labs_files/apexcharter-binding-0.1.1/apexcharter.js new file mode 100644 index 0000000..587e43f --- /dev/null +++ b/docs/articles/labs_files/apexcharter-binding-0.1.1/apexcharter.js @@ -0,0 +1,104 @@ +HTMLWidgets.widget({ + + name: 'apexcharter', + + type: 'output', + + factory: function(el, width, height) { + + var ax_opts; + var apexchart = null; + + return { + + renderValue: function(x) { + + + // Global options + ax_opts = x.ax_opts; + + // Sizing + if (typeof ax_opts.chart === 'undefined') { + ax_opts.chart = {}; + } + ax_opts.chart.width = width; + ax_opts.chart.height = height; + + // Generate or update chart + if (apexchart === null) { + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } else { + if (x.auto_update) { + apexchart.updateSeries(ax_opts.series); + } else { + apexchart.destroy(); + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } + } + + + }, + + getChart: function(){ + return apexchart; + }, + + resize: function(width, height) { + apexchart.updateOptions({ + chart: { + width: width, + height: height + } + }); + } + + }; + } +}); + +// From Friss tuto (https://github.com/FrissAnalytics/shinyJsTutorials/blob/master/tutorials/tutorial_03.Rmd) +function get_widget(id){ + + // Get the HTMLWidgets object + var htmlWidgetsObj = HTMLWidgets.find("#" + id); + + // Use the getChart method we created to get the underlying billboard chart + var widgetObj ; + + if (typeof htmlWidgetsObj != 'undefined') { + widgetObj = htmlWidgetsObj.getChart(); + } + + return(widgetObj); +} + + + +if (HTMLWidgets.shinyMode) { + // update serie + Shiny.addCustomMessageHandler('update-apexchart-series', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateSeries([{ + data: obj.data.newSeries + }], obj.data.animate); + } + }); + + // update options + Shiny.addCustomMessageHandler('update-apexchart-options', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateOptions(obj.data.options); + } + }); +} + + + + + diff --git a/docs/articles/lines.html b/docs/articles/lines.html index 717c626..4dd61b0 100644 --- a/docs/articles/lines.html +++ b/docs/articles/lines.html @@ -30,7 +30,7 @@ apexcharter - 0.1.0 + 0.1.1
@@ -83,7 +83,7 @@ -
+

@@ -141,20 +141,20 @@ stops = c(0, 100, 100, 100) ) )

-
-

Solid area color:

+
+

Solid area color:

apex(data = economics, type = "area", mapping = aes(x = date, y = uempmed)) %>% 
   ax_fill(type = "solid", opacity = 1)
-
-

Line width:

+
+

Line width:

apex(data = economics, type = "line", mapping = aes(x = date, y = uempmed)) %>% 
   ax_stroke(width = 1)
-
-

Dotted line

+
+

Dotted line

apex(data = economics, type = "line", mapping = aes(x = date, y = uempmed)) %>% 
   ax_stroke(dashArray = 6)
-
- +
+

@@ -162,13 +162,13 @@

Add points to line :

apex(data = tail(economics, 20), type = "line", mapping = aes(x = date, y = uempmed)) %>% 
   ax_markers(size = 6)
-
-

Add labels over points

+
+

Add labels over points

apex(data = tail(economics, 20), type = "line", mapping = aes(x = date, y = uempmed)) %>% 
   ax_markers(size = 6) %>% 
   ax_dataLabels(enabled = TRUE)
-
- +
+

@@ -178,12 +178,12 @@ ax_yaxis(decimalsInFloat = 2) %>% ax_markers(size = c(3, 6)) %>% ax_stroke(width = c(1, 3))

-
-
apex(data = economics_long, type = "line", mapping = aes(x = date, y = value01, group = variable)) %>% 
+
+
apex(data = economics_long, type = "line", mapping = aes(x = date, y = value01, group = variable)) %>% 
   ax_yaxis(decimalsInFloat = 2) %>% 
   ax_stroke(dashArray = c(8, 5))
-
- +
+
diff --git a/docs/articles/lines_files/apexcharter-binding-0.1.1/apexcharter.js b/docs/articles/lines_files/apexcharter-binding-0.1.1/apexcharter.js new file mode 100644 index 0000000..587e43f --- /dev/null +++ b/docs/articles/lines_files/apexcharter-binding-0.1.1/apexcharter.js @@ -0,0 +1,104 @@ +HTMLWidgets.widget({ + + name: 'apexcharter', + + type: 'output', + + factory: function(el, width, height) { + + var ax_opts; + var apexchart = null; + + return { + + renderValue: function(x) { + + + // Global options + ax_opts = x.ax_opts; + + // Sizing + if (typeof ax_opts.chart === 'undefined') { + ax_opts.chart = {}; + } + ax_opts.chart.width = width; + ax_opts.chart.height = height; + + // Generate or update chart + if (apexchart === null) { + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } else { + if (x.auto_update) { + apexchart.updateSeries(ax_opts.series); + } else { + apexchart.destroy(); + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } + } + + + }, + + getChart: function(){ + return apexchart; + }, + + resize: function(width, height) { + apexchart.updateOptions({ + chart: { + width: width, + height: height + } + }); + } + + }; + } +}); + +// From Friss tuto (https://github.com/FrissAnalytics/shinyJsTutorials/blob/master/tutorials/tutorial_03.Rmd) +function get_widget(id){ + + // Get the HTMLWidgets object + var htmlWidgetsObj = HTMLWidgets.find("#" + id); + + // Use the getChart method we created to get the underlying billboard chart + var widgetObj ; + + if (typeof htmlWidgetsObj != 'undefined') { + widgetObj = htmlWidgetsObj.getChart(); + } + + return(widgetObj); +} + + + +if (HTMLWidgets.shinyMode) { + // update serie + Shiny.addCustomMessageHandler('update-apexchart-series', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateSeries([{ + data: obj.data.newSeries + }], obj.data.animate); + } + }); + + // update options + Shiny.addCustomMessageHandler('update-apexchart-options', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateOptions(obj.data.options); + } + }); +} + + + + + diff --git a/docs/articles/starting-with-apexcharts.html b/docs/articles/starting-with-apexcharts.html index 6bc5af2..69eddb0 100644 --- a/docs/articles/starting-with-apexcharts.html +++ b/docs/articles/starting-with-apexcharts.html @@ -30,7 +30,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -83,13 +83,13 @@ -
+
-
-

Flipping coordinates can be done by using type = "bar":

+
+

Flipping coordinates can be done by using type = "bar":

apex(data = n_manufac, type = "bar", mapping = aes(x = manufacturer, y = n))
-
-

To create a dodge bar charts, use aesthetic fill :

+
+

To create a dodge bar charts, use aesthetic fill :

n_manufac_year <- count(mpg, manufacturer, year)
 
 apex(data = n_manufac_year, type = "column", mapping = aes(x = manufacturer, y = n, fill = year))
-
-

For stacked bar charts, specify option stacked in ax_chart :

+
+

For stacked bar charts, specify option stacked in ax_chart :

apex(data = n_manufac_year, type = "column", mapping = aes(x = manufacturer, y = n, fill = year)) %>% 
   ax_chart(stacked = TRUE)
-
- +
+

@@ -134,8 +134,8 @@ economics <- tail(economics, 100) apex(data = economics, type = "line", mapping = aes(x = date, y = uempmed))

-
-

To represent several lines, use a data.frame in long format and the group aesthetic:

+
+

To represent several lines, use a data.frame in long format and the group aesthetic:

data("economics_long")
 economics_long <- economics_long %>% 
   group_by(variable) %>% 
@@ -143,29 +143,29 @@
 
 apex(data = economics_long, type = "line", mapping = aes(x = date, y = value01, group = variable)) %>% 
   ax_yaxis(decimalsInFloat = 2) # number of decimals to keep
-
-

Create area charts with type = "area":

+
+

Create area charts with type = "area":

apex(data = economics_long, type = "area", mapping = aes(x = date, y = value01, fill = variable)) %>% 
   ax_yaxis(decimalsInFloat = 2) %>% # number of decimals to keep
   ax_chart(stacked = TRUE) %>%
   ax_yaxis(max = 4, tickAmount = 4)
-
- +
+

Scatter charts

Simple bar charts can be created with:

apex(data = mtcars, type = "scatter", mapping = aes(x = wt, y = mpg))
-
-

Color points according to a third variable:

+
+

Color points according to a third variable:

apex(data = mtcars, type = "scatter", mapping = aes(x = wt, y = mpg, fill = cyl)) %>%
   ax_xaxis(tickAmount = 5)
-
-

And change point size using z aesthetics:

+
+

And change point size using z aesthetics:

apex(data = mtcars, type = "scatter", mapping = aes(x = wt, y = mpg, z = scales::rescale(qsec)))
-
- +
+

@@ -177,24 +177,24 @@ ) apex(data = poll, type = "pie", mapping = aes(x = answer, y = n))

-
- +
+

Radial charts

Simple radial charts can be created with (here we pass values directly in aes, but you can use a data.frame) :

apex(data = NULL, type = "radialBar", mapping = aes(x = "My value", y = 65))
-
-

Multi radial chart (more than one value):

+
+

Multi radial chart (more than one value):

fruits <- data.frame(
   name = c('Apples', 'Oranges', 'Bananas', 'Berries'),
   value = c(44, 55, 67, 83)
 )
 
 apex(data = fruits, type = "radialBar", mapping = aes(x = name, y = value))
-
- +
+

@@ -203,8 +203,8 @@
mtcars$model <- rownames(mtcars)
 
 apex(data = head(mtcars), type = "radar", mapping = aes(x = model, y = qsec))
-
-

With a grouping variable:

+
+

With a grouping variable:

# extremely complicated reshaping
 new_mtcars <- reshape(
   data = head(mtcars), 
@@ -217,8 +217,8 @@
 )
 
 apex(data = new_mtcars, type = "radar", mapping = aes(x = model, y = value, group = time))
-
- +
+

@@ -235,8 +235,8 @@ ) %>% ax_dataLabels(enabled = FALSE) %>% ax_colors("#008FFB")

-
- +
+ diff --git a/docs/articles/starting-with-apexcharts_files/apexcharter-binding-0.1.1/apexcharter.js b/docs/articles/starting-with-apexcharts_files/apexcharter-binding-0.1.1/apexcharter.js new file mode 100644 index 0000000..587e43f --- /dev/null +++ b/docs/articles/starting-with-apexcharts_files/apexcharter-binding-0.1.1/apexcharter.js @@ -0,0 +1,104 @@ +HTMLWidgets.widget({ + + name: 'apexcharter', + + type: 'output', + + factory: function(el, width, height) { + + var ax_opts; + var apexchart = null; + + return { + + renderValue: function(x) { + + + // Global options + ax_opts = x.ax_opts; + + // Sizing + if (typeof ax_opts.chart === 'undefined') { + ax_opts.chart = {}; + } + ax_opts.chart.width = width; + ax_opts.chart.height = height; + + // Generate or update chart + if (apexchart === null) { + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } else { + if (x.auto_update) { + apexchart.updateSeries(ax_opts.series); + } else { + apexchart.destroy(); + apexchart = new ApexCharts(document.querySelector("#" + el.id), ax_opts); + apexchart.render(); + } + } + + + }, + + getChart: function(){ + return apexchart; + }, + + resize: function(width, height) { + apexchart.updateOptions({ + chart: { + width: width, + height: height + } + }); + } + + }; + } +}); + +// From Friss tuto (https://github.com/FrissAnalytics/shinyJsTutorials/blob/master/tutorials/tutorial_03.Rmd) +function get_widget(id){ + + // Get the HTMLWidgets object + var htmlWidgetsObj = HTMLWidgets.find("#" + id); + + // Use the getChart method we created to get the underlying billboard chart + var widgetObj ; + + if (typeof htmlWidgetsObj != 'undefined') { + widgetObj = htmlWidgetsObj.getChart(); + } + + return(widgetObj); +} + + + +if (HTMLWidgets.shinyMode) { + // update serie + Shiny.addCustomMessageHandler('update-apexchart-series', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateSeries([{ + data: obj.data.newSeries + }], obj.data.animate); + } + }); + + // update options + Shiny.addCustomMessageHandler('update-apexchart-options', + function(obj) { + var chart = get_widget(obj.id); + if (typeof chart != 'undefined') { + chart.updateOptions(obj.data.options); + } + }); +} + + + + + diff --git a/docs/authors.html b/docs/authors.html index b0f17ea..6f90b9e 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -60,7 +60,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/index.html b/docs/index.html index cc319fb..470c359 100644 --- a/docs/index.html +++ b/docs/index.html @@ -10,7 +10,9 @@ - + @@ -30,9 +30,9 @@ - + - + @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -120,14 +120,14 @@
-

Quick Apex Chart

+

Initialize a chart with three main parameters : data, mapping and type of chart.

@@ -172,6 +172,10 @@ +

Value

+ +

A apexcharts htmlwidget object.

+

Examples

library(dplyr)
#> @@ -221,7 +225,9 @@

Contents

diff --git a/docs/reference/apexchart.html b/docs/reference/apexchart.html index fa18a0f..0222d77 100644 --- a/docs/reference/apexchart.html +++ b/docs/reference/apexchart.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1
diff --git a/docs/reference/apexchartProxy.html b/docs/reference/apexchartProxy.html index 8ecdecf..00570c9 100644 --- a/docs/reference/apexchartProxy.html +++ b/docs/reference/apexchartProxy.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1
diff --git a/docs/reference/apexcharter-exports.html b/docs/reference/apexcharter-exports.html index f85de41..92ac30a 100644 --- a/docs/reference/apexcharter-exports.html +++ b/docs/reference/apexcharter-exports.html @@ -65,7 +65,7 @@ as Depends of apexcharter" /> apexcharter - 0.1.0 + 0.1.1
diff --git a/docs/reference/apexcharter-package.html b/docs/reference/apexcharter-package.html index e7f43ca..db7f72d 100644 --- a/docs/reference/apexcharter-package.html +++ b/docs/reference/apexcharter-package.html @@ -66,7 +66,7 @@ to create interactive and modern SVG charts." /> apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/apexcharter-shiny.html b/docs/reference/apexcharter-shiny.html index 6c114c9..662a5da 100644 --- a/docs/reference/apexcharter-shiny.html +++ b/docs/reference/apexcharter-shiny.html @@ -64,7 +64,7 @@ applications and interactive Rmd documents." /> apexcharter - 0.1.0 + 0.1.1 @@ -165,6 +165,10 @@ is useful if you want to save an expression in a variable.

+

Value

+ +

An Apexchart output that can be included in the application UI.

+

Examples

@@ -208,7 +212,9 @@ is useful if you want to save an expression in a variable.

Contents

diff --git a/docs/reference/ax-series.html b/docs/reference/ax-series.html index ef5a778..cf05a05 100644 --- a/docs/reference/ax-series.html +++ b/docs/reference/ax-series.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1
diff --git a/docs/reference/ax_annotations.html b/docs/reference/ax_annotations.html index 9f4095d..0081fef 100644 --- a/docs/reference/ax_annotations.html +++ b/docs/reference/ax_annotations.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_chart.html b/docs/reference/ax_chart.html index 0a67903..86ede4d 100644 --- a/docs/reference/ax_chart.html +++ b/docs/reference/ax_chart.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_colors.html b/docs/reference/ax_colors.html index 9702825..a7d03c6 100644 --- a/docs/reference/ax_colors.html +++ b/docs/reference/ax_colors.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_dataLabels.html b/docs/reference/ax_dataLabels.html index b766210..9534666 100644 --- a/docs/reference/ax_dataLabels.html +++ b/docs/reference/ax_dataLabels.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_fill.html b/docs/reference/ax_fill.html index 0e5ce6e..d9c49f1 100644 --- a/docs/reference/ax_fill.html +++ b/docs/reference/ax_fill.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_grid.html b/docs/reference/ax_grid.html index aa32f14..7ec37e8 100644 --- a/docs/reference/ax_grid.html +++ b/docs/reference/ax_grid.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_labels.html b/docs/reference/ax_labels.html index dab8fd3..0e37e9d 100644 --- a/docs/reference/ax_labels.html +++ b/docs/reference/ax_labels.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_labs.html b/docs/reference/ax_labs.html index 16d5847..8362a2c 100644 --- a/docs/reference/ax_labs.html +++ b/docs/reference/ax_labs.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_legend.html b/docs/reference/ax_legend.html index dd36567..97fa1eb 100644 --- a/docs/reference/ax_legend.html +++ b/docs/reference/ax_legend.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_markers.html b/docs/reference/ax_markers.html index 3159927..7d1f719 100644 --- a/docs/reference/ax_markers.html +++ b/docs/reference/ax_markers.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_plotOptions.html b/docs/reference/ax_plotOptions.html index a84dd21..26d7d4a 100644 --- a/docs/reference/ax_plotOptions.html +++ b/docs/reference/ax_plotOptions.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_proxy_options.html b/docs/reference/ax_proxy_options.html index 49d7746..37a0210 100644 --- a/docs/reference/ax_proxy_options.html +++ b/docs/reference/ax_proxy_options.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_proxy_series.html b/docs/reference/ax_proxy_series.html index 50d305d..b98f9b8 100644 --- a/docs/reference/ax_proxy_series.html +++ b/docs/reference/ax_proxy_series.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_responsive.html b/docs/reference/ax_responsive.html index 000f193..62f7c47 100644 --- a/docs/reference/ax_responsive.html +++ b/docs/reference/ax_responsive.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_states.html b/docs/reference/ax_states.html index 74fdfc5..73b727a 100644 --- a/docs/reference/ax_states.html +++ b/docs/reference/ax_states.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_stroke.html b/docs/reference/ax_stroke.html index 309ea8f..91fa8c3 100644 --- a/docs/reference/ax_stroke.html +++ b/docs/reference/ax_stroke.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_subtitle.html b/docs/reference/ax_subtitle.html index 08b1530..d455d32 100644 --- a/docs/reference/ax_subtitle.html +++ b/docs/reference/ax_subtitle.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_theme.html b/docs/reference/ax_theme.html index 36413f3..5ed83c9 100644 --- a/docs/reference/ax_theme.html +++ b/docs/reference/ax_theme.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_title.html b/docs/reference/ax_title.html index 295f391..9593b66 100644 --- a/docs/reference/ax_title.html +++ b/docs/reference/ax_title.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_tooltip.html b/docs/reference/ax_tooltip.html index b009518..685f053 100644 --- a/docs/reference/ax_tooltip.html +++ b/docs/reference/ax_tooltip.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_xaxis.html b/docs/reference/ax_xaxis.html index c24672d..fc56925 100644 --- a/docs/reference/ax_xaxis.html +++ b/docs/reference/ax_xaxis.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_yaxis.html b/docs/reference/ax_yaxis.html index e0e383b..9728585 100644 --- a/docs/reference/ax_yaxis.html +++ b/docs/reference/ax_yaxis.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/ax_yaxis2.html b/docs/reference/ax_yaxis2.html index 6a4e4cf..053eee5 100644 --- a/docs/reference/ax_yaxis2.html +++ b/docs/reference/ax_yaxis2.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 diff --git a/docs/reference/bar_opts.html b/docs/reference/bar_opts.html index 977d4d7..e317a96 100644 --- a/docs/reference/bar_opts.html +++ b/docs/reference/bar_opts.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -172,6 +172,10 @@ +

Value

+ +

A list of options that can be used in ax_plotOptions.

+

Note

See https://apexcharts.com/docs/options/plotoptions/bar/.

@@ -196,6 +200,8 @@ diff --git a/docs/reference/heatmap_opts.html b/docs/reference/heatmap_opts.html index 5ede446..87b510b 100644 --- a/docs/reference/heatmap_opts.html +++ b/docs/reference/heatmap_opts.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -159,6 +159,10 @@ +

Value

+ +

A list of options that can be used in ax_plotOptions.

+

Note

See https://apexcharts.com/docs/options/plotoptions/heatmap/.

@@ -194,6 +198,8 @@ diff --git a/docs/reference/pie_opts.html b/docs/reference/pie_opts.html index acb17ff..7d180a3 100644 --- a/docs/reference/pie_opts.html +++ b/docs/reference/pie_opts.html @@ -63,7 +63,7 @@ apexcharter - 0.1.0 + 0.1.1 @@ -168,6 +168,10 @@ and background (The background color of the pie).

+

Value

+ +

A list of options that can be used in ax_plotOptions.

+

Note

See https://apexcharts.com/docs/options/plotoptions/pie/.

@@ -190,6 +194,8 @@ and background (The background color of the pie).