I'm getting closer to produce what I want, but Now i'm having troubles resizing and aligning the rChart output. Right now my output is in the lower left corner of my second column. I would like the output to be centered in the second column and if possible to get resized to fit it better.
This is my ui.R:
require(rCharts)
shinyUI(fluidPage(
titlePanel("Quiz 3 grades distribution"),
fluidRow(
column(3,
#helpText("Select grade in Quiz 1 before the treatment:"),
selectInput("select", label = h3("Grade Quiz 1 before the treatment:"),
choices = list("All" = 0, "Not Perfect" = 1, "Perfect" = 2),
selected = 0)
),
column(9, showOutput("histogram","nvd3"), class = "span6")
)
))
Thanks for the help!
runApp
to do this. – Mannes