apexcharter/inst/examples/pie.R

40 lines
700 B
R
Raw Permalink Normal View History

2018-09-07 18:06:41 +02:00
# ------------------------------------------------------------------------
#
# Title : Pie charts
# By : Victor
# Date : 2018-09-07
#
# ------------------------------------------------------------------------
# Packages ----------------------------------------------------------------
library(apexcharter)
# Simple pie --------------------------------------------------------------
2019-02-15 22:33:14 +01:00
apexchart() %>%
2018-09-07 18:06:41 +02:00
ax_chart(type = "pie") %>%
2018-11-06 09:04:16 +01:00
ax_series(23, 45, 56) %>%
ax_labels("A", "B", "C")
2018-09-07 18:06:41 +02:00
# Donut -------------------------------------------------------------------
2019-02-15 22:33:14 +01:00
apexchart() %>%
2018-09-07 18:06:41 +02:00
ax_chart(type = "donut") %>%
2018-11-06 09:04:16 +01:00
ax_series2(c(23, 45, 56)) %>%
ax_labels2(c("A", "B", "C"))
2018-09-07 18:06:41 +02:00