-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload_tab_ui.R
43 lines (38 loc) · 1.23 KB
/
upload_tab_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
33
34
35
36
37
38
39
40
41
42
fluidRow(
column(3,
helpText("Select the below mentioned items"),
fileInput("infilepower",
label = "Read Energy data",
accept= c(
'text/csv',
'text/comma-separated-values',
'text/tab-separated-values',
'text/plain',
'.csv',
'.tsv' )
),
dateRangeInput("seldaterange",
label = "Date Range",
start = "2016-06-11",
end = "2016-06-19",
format = "yyyy-mm-dd"),
checkboxInput('specdaterange',
label = "Visualize usage in above dates",
value = FALSE),
dateInput("seldate",
label="Select Date",
value="2016-09-02"
),
checkboxInput('specdate',
label = "Visualize Usage on above Date",
value =FALSE)
),
column(9,
fluidRow(
column(12,
# textOutput("text1"),
plotlyOutput("lineplt1")
)
)
)
)