TPD-InternationalFootballRe.../UI/BalanceComponent.R
2019-06-14 18:32:12 +02:00

17 lines
291 B
R

# Balance component
balanceComponent <- function()
{
tabsetPanel(
tabPanel("Bar graph",
wellPanel(
plotOutput("balance")
)
),
tabPanel("Pie chart",
wellPanel(
plotOutput("balancePieChart")
)
)
)
}