fusionMultiPlot: Create new multiple charts

View source: R/fusionMultiPlot.R

fusionMultiPlotR Documentation

Create new multiple charts

Description

Main function to make interactive charts. Check all charts at https://www.fusioncharts.com/charts

Usage

fusionMultiPlot(data, x, y, col, type = "msstepline", numberSuffix = NULL)

Arguments

data

Default dataset to use

x, y

character name of variable

col

define seriesname variable

type

type of chart

numberSuffix

Specify the suffix for all the Y-axis values on the chart

Examples

library(fusionchartsR)

# Multiple charts
new.data <- data.frame(
label = rep(x = c(2012:2016), times = 2),
seriesname = c(rep("iOS App Store", 5), rep("Google Play Store", 5)),
values = c(1:10)
)

new.data %>%
fusionMultiPlot(
x = "label",
y = "values",
col = "seriesname",
type = "mscolumn2d",
) %>%
fusionTheme(theme = "fusion")


alexym1/fusionChartsR documentation built on Feb. 2, 2024, 6:56 a.m.