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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/rhandsontable.R
\name{hot_rows}
\alias{hot_rows}
\title{Handsontable widget}
\usage{
hot_rows(hot, rowHeights = NULL, fixedRowsTop = NULL)
}
\arguments{
\item{hot}{rhandsontable object}
\item{rowHeights}{a scalar or numeric vector of row heights}
\item{fixedRowsTop}{a scaler indicating the number of rows to
freeze on the top}
}
\description{
Configure rows. See
\href{http://handsontable.com}{Handsontable.js} for details.
}
\examples{
library(rhandsontable)
MAT = matrix(rnorm(50), nrow = 10, dimnames = list(LETTERS[1:10],
letters[1:5]))
rhandsontable(MAT, width = 300, height = 150) \%>\%
hot_cols(colWidths = 100, fixedColumnsLeft = 1) \%>\%
hot_rows(rowHeights = 50, fixedRowsTop = 1)
}
\seealso{
\code{\link{hot_cols}}, \code{\link{hot_cell}}
}
|