We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When some c3 visualisation is inserted into a shiny page, the height parameter does not seem to work.
I am not sure if its related to this issue but it is slightly difficult to use it right now in large Shiny Applications.
Here is a working minimal example:
library(shiny) library(shinydashboard)
data <- data.frame(a = c(1,2,3,2), b = c(2,3,1,5))
shinyApp( ui = dashboardPage( dashboardHeader(), dashboardSidebar(), dashboardBody( tags$head(tags$style("#plot1{height:100vh !important;}")), tags$head(tags$style("#plot2{height:100vh !important;}")), fluidRow( column(6,c3Output("plot1", "100%", "100%")), column(6,plotOutput("plot2", "100%", "100%"))
)
), server = function(input, output) {
output$plot1 <- renderC3({ data %>% c3() }) output$plot2 <- renderPlot({ plot(data) })
} )
The text was updated successfully, but these errors were encountered:
I think you are right on the related issue. The resize interaction between the js library shiny and htmlwidgets had been difficult.
The issue you returned had a couple of work arounds, I will try and implement them and get back to you
Sorry, something went wrong.
Thanks in advance!
No branches or pull requests
Hi,
When some c3 visualisation is inserted into a shiny page, the height parameter does not seem to work.
I am not sure if its related to this issue but it is slightly difficult to use it right now in large Shiny Applications.
Here is a working minimal example:
library(shiny)
library(shinydashboard)
data <- data.frame(a = c(1,2,3,2), b = c(2,3,1,5))
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
tags$head(tags$style("#plot1{height:100vh !important;}")),
tags$head(tags$style("#plot2{height:100vh !important;}")),
fluidRow(
column(6,c3Output("plot1", "100%", "100%")),
column(6,plotOutput("plot2", "100%", "100%"))
)
),
server = function(input, output) {
}
)
The text was updated successfully, but these errors were encountered: