Draws text labels at specified break positions along a floating axis line,
with style defaults taken from the axis.text element of the set theme.
Requires coord_cartesian(clip = "off").
Usage
axis_text(
xintercept = NULL,
yintercept = NULL,
breaks,
labels = NULL,
length = ggplot2::rel(1),
angle = 0,
hjust = NULL,
vjust = NULL,
colour = NULL,
size = NULL,
family = NULL,
layout = NULL
)Arguments
- xintercept
One or more x positions for vertical axis lines, in data coordinates or wrapped in
I()for normalised panel coordinates (npc). May be a vector; each value produces a separate axis.- yintercept
One or more y positions for horizontal axis lines, in data coordinates or wrapped in
I()for normalised panel coordinates (npc). May be a vector; each value produces a separate axis.- breaks
A numeric vector of break positions in data coordinates, or wrapped in
I()for npc. Pass a list the same length as the total number of axes to use different breaks per axis.- labels
One of:
NULL(default) to use break values as labelsA character vector recycled across all breaks in order
A function taking break values and returning labels
A list the same length as the number of axes, each element being one of the above
- length
Offset from the axis line including tick length and margin. Supports
rel(). Negative values place text on the opposite side. Defaults torel(1). May be a vector recycled across all breaks in order.- angle
Text rotation angle. Defaults to
0. May be a vector recycled across all breaks in order.- hjust, vjust
Justification. Auto-calculated from axis direction and
angleifNULL. May be a vector recycled across all breaks in order.- colour
Inherits from
axis.textin the set theme. May be a vector recycled across all breaks in order.- size
Inherits from
axis.textin the set theme. May be a vector recycled across all breaks in order.- family
Inherits from
axis.textin the set theme. May be a vector recycled across all breaks in order.- layout
Controls which panels the annotation appears in.
NULL(default) repeats in all panels. An integer targets a specific panel."fixed"repeats in all panels ignoring faceting variables. Seeggplot2::layer()for full details.