There are a lot of JS libraries for making Calendar in web applications.
How to make an elegant Calendar solution with labeling dates like in Google Calendar for R Shiny applications?
Thanks!
Have a look at the fullcalendar package on github, alternatively you can Add a Google calendar to your website
library(shiny)
library(fullcalendar)
data = data.frame(title = paste("Event", 1:3),
                  start = c("2017-03-01", "2017-03-01", "2017-03-15"),
                  end = c("2017-03-02", "2017-03-04", "2017-03-18"),
                  color = c("red", "blue", "green"))
ui <- fluidPage(
  column(6,
         fullcalendarOutput("calendar", width = "100%", height = "200px")
  )
)
server <- function(input, output) {
  output$calendar <- renderFullcalendar({
    fullcalendar(data)
  })
}
shinyApp(ui, server)

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With