apexcharter/man/ax_chart.Rd

57 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-07-31 22:56:51 +02:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/apex-utils.R
\name{ax_chart}
\alias{ax_chart}
\title{Chart parameters}
\usage{
ax_chart(ax, type = NULL, stacked = NULL, stackType = NULL,
animations = NULL, background = NULL, foreColor = NULL,
dropShadow = NULL, events = NULL, offsetX = NULL, offsetY = NULL,
2018-09-30 15:56:37 +02:00
selection = NULL, sparkline = NULL, toolbar = NULL, zoom = NULL,
width = NULL, height = NULL, ...)
2018-07-31 22:56:51 +02:00
}
\arguments{
\item{ax}{A \code{apexcharts} \code{htmlwidget} object.}
\item{type}{Specify the chart type. Available Options: \code{"bar"}, \code{"column"}, \code{"line"},
\code{"histogram"}, \code{"pie"}, \code{"donut"}, \code{"radialBar"}, \code{"scatter"}, \code{"bubble"}, \code{"heatmap"}.}
\item{stacked}{Logical. Enables stacked option for axis charts.}
2018-08-08 10:48:03 +02:00
\item{stackType}{When stacked, should the stacking be percentage based or normal stacking. Available options: \code{"normal"} or \code{"100\%"}}
2018-09-03 23:52:53 +02:00
\item{animations}{A list of parameters.}
2018-07-31 22:56:51 +02:00
\item{background}{Background color for the chart area. If you want to set background with css, use \code{.apexcharts-canvas} to set it.}
\item{foreColor}{Sets the text color for the chart. Defaults to \code{#373d3f}.}
2018-09-03 23:52:53 +02:00
\item{dropShadow}{A list of parameters. See \url{https://apexcharts.com/docs/options/chart/dropshadow/}.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{events}{A list of parameters. See\url{https://apexcharts.com/docs/options/chart/events/}.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{offsetX}{Sets the left offset for chart.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{offsetY}{Sets the top offset for chart.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{selection}{A list of parameters.}
2018-07-31 22:56:51 +02:00
\item{sparkline}{List. Sparkline hides all the elements of the charts other than the primary paths. Helps to visualize data in small areas. .}
2018-09-03 23:52:53 +02:00
\item{toolbar}{A list of parameters. See \url{https://apexcharts.com/docs/options/chart/toolbar/}.}
2018-08-08 10:48:03 +02:00
2018-09-03 23:52:53 +02:00
\item{zoom}{A list of parameters. See \url{https://apexcharts.com/docs/options/chart/zoom/}.}
2018-07-31 22:56:51 +02:00
\item{width}{Width of the chart.}
\item{height}{Height of the chart.}
\item{...}{Additional parameters.}
}
\value{
A \code{apexcharts} \code{htmlwidget} object.
}
\description{
Chart parameters
}