Nothing
library(shiny)
library(shinyChakraUI)
library(fontawesome)
shinyUI(
chakraPage(
br(),
chakraComponent(
"mycomponent",
Tag$Box(
maxW = "70%",
borderWidth = "1px",
borderRadius = "lg",
Tag$Text(
as = "mark",
fontSize = "xl",
"This example shows how to put an icon on a slider thumb. ",
"It also illustrates the ", Tag$Code("minStepsBetweenThumbs"), "option. ",
"Here it is set to 4, and the step is set to 0.5, hence the two thumbs ",
"cannot be separated by a distance lower than 2."
)
),
br(), Tag$Divider(), br(),
chakraRangeSlider(
"slider",
label = tags$span(
style="font-family: cursive;",
"I have Chakra icons on my thumbs!"
),
values = c(2, 8),
min = 0, max = 10,
step = 0.5,
width = "50%",
trackColor = "pink",
filledTrackColor = "red",
tooltip = TRUE,
tooltipOptions = sliderTooltipOptions(
backgroundColor = "tomato",
placement = "bottom"
),
thumbOptionsLeft = sliderThumbOptions(
width = 22, height = 22,
color = "lime",
children = Tag$Box(as = jseval("ArrowLeftIcon"))
),
thumbOptionsRight = sliderThumbOptions(
width = 22, height = 22,
color = "lime",
children = Tag$Box(as = jseval("ArrowRightIcon"))
),
shinyValueOn = "end",
minStepsBetweenThumbs = 4
),
br(), Tag$Divider(), br(),
Tag$Box(
Tag$Text(
as = "mark",
fontSize = "xl",
"You can also use 'fontawesome' icons:"
)
),
br(),
chakraRangeSlider(
"vslider",
label = tags$span(
style="font-family: cursive;",
"I have fontawesome icons on my thumbs!"
),
values = c(2, 8),
min = 0, max = 10,
step = 0.5,
orientation = "vertical",
width = 0,
size = "lg",
trackColor = "cyan",
filledTrackColor = "navy",
tooltip = TRUE,
tooltipOptions = sliderTooltipOptions(
backgroundColor = "aliceblue",
color = "black",
placement = "right"
),
thumbOptionsLeft = sliderThumbOptions(
width = 22, height = 22,
color = "yellow",
children = fa_i("arrow-down")
),
thumbOptionsRight = sliderThumbOptions(
width = 22, height = 22,
color = "yellow",
children = fa_i("arrow-up")
),
minStepsBetweenThumbs = 4,
minH = "150"
)
)
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.