Is there a way to have an inline/horizontal rank_list
from the sortable
package?
library(shiny)
library(sortable)
ui <- fluidPage(
rank_list(labels = c("/", "26", "2022", "August", "/"),
input_id = "rank")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Gives:
But I would like to have the labels horizontal and slide horizontally over one another to construct a more readable date.
I tried rank_list(..., options = sortable_options(direction = "horizontal"))
and also "vertical"
but neither made a difference.