decumented package

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-01-16 11:45:04 +01:00
commit 49695a5f41
No known key found for this signature in database
13 changed files with 284 additions and 3 deletions

32
man/add_sparkline.Rd Normal file
View file

@ -0,0 +1,32 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data-summary.R
\name{add_sparkline}
\alias{add_sparkline}
\title{Add sparkline to datagrid}
\usage{
add_sparkline(
grid,
column = "vals",
color.main = "#2a8484",
color.sec = "#84EF84"
)
}
\arguments{
\item{grid}{grid}
\item{column}{clumn to transform}
}
\value{
datagrid
}
\description{
Add sparkline to datagrid
}
\examples{
grid <- mtcars |>
default_parsing() |>
overview_vars() |>
toastui::datagrid() |>
add_sparkline()
grid
}