forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw_key.Rd
63 lines (48 loc) · 1.29 KB
/
draw_key.Rd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/legend-draw.r
\name{draw_key}
\alias{draw_key}
\alias{draw_key_abline}
\alias{draw_key_blank}
\alias{draw_key_boxplot}
\alias{draw_key_crossbar}
\alias{draw_key_dotplot}
\alias{draw_key_label}
\alias{draw_key_path}
\alias{draw_key_point}
\alias{draw_key_pointrange}
\alias{draw_key_polygon}
\alias{draw_key_rect}
\alias{draw_key_smooth}
\alias{draw_key_text}
\alias{draw_key_vline}
\title{Key drawing functions}
\usage{
draw_key_point(data, params)
draw_key_abline(data, params)
draw_key_rect(data, params)
draw_key_polygon(data, params)
draw_key_blank(data, params)
draw_key_boxplot(data, params)
draw_key_crossbar(data, params)
draw_key_path(data, params)
draw_key_dotplot(data, params)
draw_key_pointrange(data, params)
draw_key_smooth(data, params)
draw_key_text(data, params)
draw_key_label(data, params)
draw_key_vline(data, params)
}
\arguments{
\item{data}{A single row data frame containing the scaled aesthetics to
display in this key}
\item{params}{A list of additional parameters supplied to the geom.}
}
\value{
A grid grob.
}
\description{
Each Geom has an associated function that draws the key when the geom needs
to be displayed in a legend. These are the options built into ggplot2.
}
\keyword{internal}