Rev 1863 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{G_panel.axis}\alias{panel.axis}\alias{current.panel.limits}\title{Panel Function for Drawing Axis Ticks and Labels}\description{\code{panel.axis} is the function used by lattice to draw axes. It istypically not used by users, except those wishing to create advancedannotation. Keep in mind issues of clipping when trying to use it aspart of the panel function. \code{current.panel.limits} can be used toretrieve a panel's x and y limits.}\usage{panel.axis(side = c("bottom", "left", "top", "right"),at,labels = TRUE,draw.labels = TRUE,check.overlap = FALSE,outside = FALSE,ticks = TRUE,half = !outside,which.half,tck = as.numeric(ticks),rot = if (is.logical(labels)) 0 else c(90, 0),text.col, text.alpha, text.cex, text.font,text.fontfamily, text.fontface,line.col, line.lty, line.lwd, line.alpha)current.panel.limits(unit = "native")}\arguments{\item{side}{character string indicating which side axes are to be drawnon. Partial specification is allowed.}\item{at}{ location of labels }\item{labels}{the labels to go along with \code{at}. The labels can be a charactervector or a vector of expressions. Alternatively, this can be alogical. If TRUE, the labels are derived from \code{at}, otherwise,labels are empty.}\item{draw.labels}{logical indicating whether labels are to be drawn}\item{check.overlap}{logical, whether to check for overlapping of labels. This also hasthe effect of removing \code{at} values that are \sQuote{too close}to the limits.}\item{outside}{logical, whether to the labels draw outside the panel or inside.Note that \code{outside=TRUE} will only have a visible effect ifclipping is disabled for the viewport (panel).}\item{ticks}{ logical, whether to draw the tickmarks }\item{half}{logical, whether only half of scales will be drawn for each side}\item{which.half}{character string, one of \code{"lower"} and\code{"upper"}. Indicates which half is to be used for ticklocations if \code{half=TRUE}. Defaults to whatever is suitable for\code{\link{splom}}}\item{tck}{numeric scalar, multiplier for tick length. Can be negative.}\item{rot}{rotation angles for labels in degrees. Can be a vector of length 2for x- and y-axes respectively}\item{text.col, text.alpha, text.cex, text.font, text.fontfamily,text.fontface, line.col, line.lty, line.lwd, line.alpha}{ graphicalparameters }\item{unit}{ which grid \code{\link[grid:unit]{unit}} the valuesshould be in }}\details{\code{panel.axis} can draw axis tick marks inside or outside apanel (more precisely, a grid viewport). It honours the (native) axisscales. Used in \code{\link{panel.pairs}} for \code{\link{splom}}, aswell as for all the usual axis drawing by the print method for\code{"trellis"} objects. It can also be used to enhance plots\sQuote{after the fact} by adding axes.}\value{\code{current.panel.limits} returns a list with components \code{xlim}and \code{ylim}, which are both numeric vectors of length 2, givingthe scales of the current panel (viewport). The values correspond tothe unit system specified by \code{\link[grid:unit]{unit}}, by default\code{"native"}.}\seealso{\code{\link{Lattice}}, \code{\link{xyplot}},\code{\link{trellis.focus}}, \code{\link[grid:unit]{unit}}}\author{ Deepayan Sarkar \email{Deepayan.Sarkar@R-project.org}}\keyword{dplot}