apexcharter/man/ax_yaxis.Rd

49 lines
1.4 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_yaxis}
\alias{ax_yaxis}
\title{Y-axis options}
\usage{
2018-08-08 10:48:03 +02:00
ax_yaxis(ax, opposite = NULL, tickAmount = NULL, max = NULL,
min = NULL, floating = NULL, labels = NULL, axisBorder = NULL,
axisTicks = NULL, title = NULL, tooltip = NULL,
crosshairs = NULL, ...)
2018-07-31 22:56:51 +02:00
}
\arguments{
\item{ax}{A \code{apexcharts} \code{htmlwidget} object.}
\item{opposite}{Logical. When enabled, will draw the yaxis on the right side of the chart.}
\item{tickAmount}{Number of Tick Intervals to show.}
\item{max}{Lowest number to be set for the y-axis. The graph drawing beyond this number will be clipped off.}
\item{min}{Highest number to be set for the y-axis. The graph drawing beyond this number will be clipped off.}
\item{floating}{Logical. Floating takes y-axis is taken out of normal flow and places y-axis on svg element directly,
similar to an absolutely positioned element. Set the offsetX and offsetY then to adjust the position manually}
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
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{tooltip}{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
\item{...}{Additional parameters.}
}
\value{
A \code{apexcharts} \code{htmlwidget} object.
}
\description{
Y-axis options
}
2018-09-03 23:52:53 +02:00
\note{
See \url{https://apexcharts.com/docs/options/yaxis/}
}