-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
15 lines (14 loc) · 757 Bytes
/
ui.R
File metadata and controls
15 lines (14 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source('external/aux_ui.R')
shinyUI(fluidPage(
titlePanel('Tutorials'),
navbarPage("Menu",
component1(),
component2(),
component3(),
component4(),
navbarMenu("Extra",
tabPanel('Sub-component 1', plotOutput('carPlot',click='plot_click'),verbatimTextOutput("info"),"Click in a point of the plot to retrieve the coordinates."),
tabPanel('Sub-component 2', plotOutput('otherPlot',click='plot_click',brush='plot_brush'),verbatimTextOutput('info2'),
"Click in a point of the plot to retrieve the coordinates.",
"Click and drag to obtain the limits of the region selected.")))
))