apexcharter/man/ax_xaxis.Rd

57 lines
1.9 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_xaxis}
\alias{ax_xaxis}
\title{X-axis options}
\usage{
ax_xaxis(ax, type = NULL, categories = NULL, labels = NULL,
2018-08-08 10:48:03 +02:00
axisBorder = NULL, axisTicks = NULL, tickAmount = NULL,
min = NULL, max = NULL, range = NULL, floating = NULL,
position = NULL, title = NULL, crosshairs = NULL, tooltip = NULL,
...)
2018-07-31 22:56:51 +02:00
}
\arguments{
\item{ax}{A \code{apexcharts} \code{htmlwidget} object.}
\item{type}{Character. Available Options : \code{"categories"} and \code{"datetime"}.}
\item{categories}{Categories are labels which are displayed on the x-axis.}
2018-09-03 23:52:53 +02:00
\item{labels}{A list of parameters.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{axisBorder}{A list of parameters.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{axisTicks}{A list of parameters.}
2018-07-31 22:56:51 +02:00
\item{tickAmount}{Number of Tick Intervals to show.}
\item{min}{Lowest number to be set for the x-axis. The graph drawing beyond this number will be clipped off.}
\item{max}{Highest number to be set for the x-axis. The graph drawing beyond this number will be clipped off.}
\item{range}{Range takes the max value of x-axis, subtracts the provided range value and gets the min value based on that.
So, technically it helps to keep the same range when min and max values gets updated dynamically.}
\item{floating}{Logical. Floating takes x-axis is taken out of normal flow and places x-axis on svg element directly,
similar to an absolutely positioned element. Set the offsetX and offsetY then to adjust the position manually}
\item{position}{Setting this option allows you to change the x-axis position. Available options: \code{"top"} and \code{"bottom"}.}
2018-09-03 23:52:53 +02:00
\item{title}{A list of parameters.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{crosshairs}{A list of parameters.}
2018-07-31 22:56:51 +02:00
2018-09-03 23:52:53 +02:00
\item{tooltip}{A list of parameters.}
2018-07-31 22:56:51 +02:00
\item{...}{Additional parameters.}
}
\value{
A \code{apexcharts} \code{htmlwidget} object.
}
\description{
X-axis options
}
2018-09-03 23:52:53 +02:00
\note{
See \url{https://apexcharts.com/docs/options/xaxis/}
}