-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread_ui.R
52 lines (48 loc) · 1.07 KB
/
read_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
43
44
45
46
47
48
49
50
51
52
output$date = renderUI({
dateRangeInput(
inputId = 'date',
label = '기간을 선택하세요',
start = head(df$DATE, 1),
end = tail(df$DATE, 1),
min = head(df$DATE, 1),
max = tail(df$DATE, 1),
format = "yyyy-mm-dd",
separator = " - ")
})
# output$period = renderUI({
# awesomeRadio(
# inputId = "period",
# label = "리밸런싱 주기",
# choices = c("months", "quarters", "years"),
# selected = "months",
# inline = FALSE,
# checkbox = TRUE
# )
# })
# output$download = renderUI({
# downloadBttn(
# outputId = "asset",
# label = '데이터 다운로드',
# style = "bordered",
# color = "primary",
# size = 'xs'
# )
# })
output$navret = renderUI({
awesomeRadio(
inputId = "navret",
label = "",
choices = c("기준가", "수익률"),
selected = "기준가",
checkbox = TRUE
)
})
output$statcategory = renderUI({
awesomeRadio(
inputId = "statcategory",
label = "펀드 종류를 선택하세요",
choices = c("H", "UH"),
selected = "H",
checkbox = TRUE
)
})