powered by
Generate column waterfall chart for visualizing contribution.
column_chart_waterfall(data, x, series, styles = NULL, interval = "months")
data frame in wide format containing data to be plotted
vector containing labels for x axis or name of column in data with values of x axis labels
vector containing names of columns in data with values to plot
optional vector with styles of bars
intervals on x axis. The width of the bars depends on this parameter
object of class tidychart with a character vector containing SVG elements
# NOT RUN { df <- data.frame(x = 10:18, y = rnorm(9)) column_chart_waterfall(df, 'x', 'y') # }
Run the code above in your browser using DataLab