regenerate man

This commit is contained in:
pvictor 2020-02-15 13:07:05 +01:00
parent 279ca36946
commit 10fe4eee19
6 changed files with 10 additions and 10 deletions

View File

@ -9,7 +9,7 @@ ax_colors(ax, ...)
\arguments{
\item{ax}{A \code{apexcharts} \code{htmlwidget} object.}
\item{...}{Colors for the charts series. When all colors are used, it starts from the beginning.}
\item{...}{Colors for the chart's series. When all colors are used, it starts from the beginning.}
}
\value{
A \code{apexcharts} \code{htmlwidget} object.

View File

@ -21,7 +21,7 @@ ax_dataLabels(
\item{enabled}{To determine whether to show dataLabels or not.}
\item{textAnchor}{The alignment of text relative to dataLabels drawing position.
\item{textAnchor}{The alignment of text relative to dataLabel's drawing position.
Accepted values \code{"start"}, \code{"middle"} or \code{"end"}.}
\item{offsetX}{Sets the left offset for dataLabels.}

View File

@ -27,11 +27,11 @@ meteo_paris <- data.frame(
tmin = c(3, 3, 5, 7, 11, 14, 16, 16, 13, 10, 6, 3)
)
apex(meteo_paris, type = "column", aes(x = month, y = tmin)) \%>\%
apex(meteo_paris, type = "column", aes(x = month, y = tmin)) \%>\%
ax_labs(
title = "Average minimal temperature in Paris",
subtitle = "Data from NOAA",
x = "Month",
y = "Temperature (°C)"
x = "Month",
y = "Temperature (\u00b0C)"
)
}

View File

@ -36,15 +36,15 @@ ax_legend(
\item{showForSingleSeries}{Show legend even if there is just 1 series.}
\item{showForNullSeries}{Allows you to hide a particular legend if its series contains all null values.}
\item{showForNullSeries}{Allows you to hide a particular legend if it's series contains all null values.}
\item{showForZeroSeries}{Allows you to hide a particular legend if its series contains all 0 values.}
\item{showForZeroSeries}{Allows you to hide a particular legend if it's series contains all 0 values.}
\item{horizontalAlign}{Available options for horizontal alignment: \code{"right"}, \code{"center"}, \code{"left"}.}
\item{fontSize}{Sets the fontSize of legend text elements}
\item{textAnchor}{The alignment of text relative to legends drawing position}
\item{textAnchor}{The alignment of text relative to legend's drawing position}
\item{offsetY}{Sets the top offset for legend container.}

View File

@ -31,7 +31,7 @@ ax_tooltip(
\item{shared}{Logical. When having multiple series, show a shared tooltip.}
\item{followCursor}{Logical. Follow users cursor position instead of putting tooltip on actual data points.}
\item{followCursor}{Logical. Follow user's cursor position instead of putting tooltip on actual data points.}
\item{intersect}{Logical. Show tooltip only when user hovers exactly over datapoint.}

View File

@ -35,7 +35,7 @@ events_opts(
\item{dataPointSelection}{Fires when user clicks on a datapoint (bar/column/marker/bubble/donut-slice).}
\item{dataPointMouseEnter}{Fires when users mouse enter on a datapoint (bar/column/marker/bubble/donut-slice).}
\item{dataPointMouseEnter}{Fires when user's mouse enter on a datapoint (bar/column/marker/bubble/donut-slice).}
\item{dataPointMouseLeave}{MouseLeave event for a datapoint (bar/column/marker/bubble/donut-slice).}