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
|
\name{height.AnnotationFunction}
\alias{height.AnnotationFunction}
\title{
Height of the AnnotationFunction Object
}
\description{
Height of the AnnotationFunction Object
}
\usage{
\method{height}{AnnotationFunction}(x, ...)
}
\arguments{
\item{x}{The \code{\link{AnnotationFunction-class}} object.}
\item{...}{Other arguments.}
}
\details{
Internally used.
}
\examples{
anno = anno_points(1:10)
ComplexHeatmap:::height(anno)
anno = anno_points(1:10, which = "row")
ComplexHeatmap:::height(anno)
}
|