File: axis_props.Rd

package info (click to toggle)
r-cran-ggvis 0.4.7%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,716 kB
  • sloc: javascript: 7,373; sh: 25; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 958 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/guide_props.R
\name{axis_props}
\alias{axis_props}
\title{Create an axis_props object for controlling axis properties.}
\usage{
axis_props(
  ticks = NULL,
  majorTicks = NULL,
  minorTicks = NULL,
  grid = NULL,
  labels = NULL,
  title = NULL,
  axis = NULL
)
}
\arguments{
\item{ticks}{A named list of line properties for ticks.}

\item{majorTicks}{A named list of line properties for major ticks.}

\item{minorTicks}{A named list of line properties for minor ticks.}

\item{grid}{A named list of line properties for grid lines.}

\item{labels}{A named list of text properties for axis labels.}

\item{title}{A named list of text properties for the axis title.}

\item{axis}{A named list of line properties for the axis line.}
}
\description{
The items in each of the lists can be a literal value, like \code{5} or
"blue", or they can be a \code{\link{scaled_value}} object.
}