kanban {shinykanban}R Documentation

Create a Kanban Board Widget

Description

This function creates an interactive Kanban board as an HTML widget.

Usage

kanban(
  data,
  styleOptions = list(headerBg = "#fff", headerBgHover = "#fff", headerColor = "#353535",
    headerFontSize = "1rem", listNameFontSize = "1rem", cardTitleFontSize = "1rem",
    cardTitleFontWeight = 600, cardSubTitleFontSize = "0.8rem", cardSubTitleFontWeight =
    300, addCardBgColor = "#999", deleteList = list(backgroundColor = "#fff", color =
    "#353535", icon = bsicons::bs_icon("x"), size = "1rem"), deleteCard =
    list(backgroundColor = "#fff", color = "#353535", icon = bsicons::bs_icon("trash"),
    size = "1rem"), addButtonText = "Add", 
     cancelButtonText = "Cancel",
    addCardButtonText = "Add Card", cancelCardButtonText = "Cancel"),
  width = NULL,
  height = NULL,
  elementId = NULL
)

Arguments

data

A named list representing the board data.

styleOptions

A named list of style options.

width, height

Optional widget dimensions.

elementId

DOM element ID.

Value

A kanban board.


[Package shinykanban version 0.0.1 Index]