Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

starBlock

AdminLTE2 starBlock


Description

Create a starBlock item (ideal for rating)

Usage

starBlock(value, max = 5, color = "yellow")

Arguments

value

Current score. Should be positive and lower or equal to max.

max

Maximum number of stars by block.

color

Star color: see validColors() in the documentation. See below:

  • light-blue (primary status): #3c8dbc.

  • red (danger status): #dd4b39.

  • green (success status): #00a65a.

  • aqua (info status): #00c0ef.

  • yellow (warning status): #f39c12.

  • blue: #0073b7.

  • navy: #001F3F.

  • teal: #39CCCC.

  • olive: #3D9970.

  • lime: #01FF70.

  • orange: #FF851B.

  • fuchsia: #F012BE.

  • purple: #605ca8.

  • maroon: #D81B60.

  • black: #111.

  • gray: #d2d6de.

Author(s)

David Granjon, dgranjon@ymail.com

Examples

if (interactive()) {
 library(shiny)
 library(shinydashboard)
 library(shinydashboardPlus)
 
 shinyApp(
  ui = dashboardPage(
    dashboardHeader(),
    dashboardSidebar(),
    dashboardBody(
     box(
      title = "Star example",
      starBlock(5),
      starBlock(5, color = "olive"),
      starBlock(1, color = "maroon"),
      starBlock(3, color = "teal")
     )
    ),
    title = "starBlock"
  ),
  server = function(input, output) { }
 )
}

shinydashboardPlus

Add More 'AdminLTE2' Components to 'shinydashboard'

v2.0.1
GPL (>= 2) | file LICENSE
Authors
David Granjon [aut, cre], RinteRface [cph], Almasaeed Studio [ctb, cph] (AdminLTE2 theme for Bootstrap 3), Guang Yang [ctb, cph] (ygdashboard original template), Winston Chang [ctb, cph] (Functions from shinydashboard), Victor Perrier [ctb] (improved the shinydashboardPlusGallery)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.