-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
33 lines (24 loc) · 908 Bytes
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
radioButtons("data",label = h3("Choose the data"),
choices = list("ISP_DUMP_COUNT",
"BILL_DATA_DUMP_COUNT",
"MAR_DUMP_COUNT",
"ATTENDANCE_DUMP_COUNT",
"GER_DUMP_COUNT",
"SMAIL_DUMP_COUNT",
"COMBINED_MODULE"),
selected ="ISP_DUMP_COUNT"),
radioButtons("Time_zone_option", label = h3("Choose the time zone"),
choices = list("Eastern","Local"),
selected ="Eastern"),
dateInput("date", label = h3("Select Date"),
value = "2016-03-10")
),
mainPanel(
htmlOutput("Linechart")
)
)
)
)