apexcharter/inst/examples/pie.R

40 lines
704 B
R
Raw 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-14 09:22:57 +01:00
apexcharter() %>%
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-14 09:22:57 +01:00
apexcharter() %>%
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