-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappStatus.R
42 lines (39 loc) · 1.12 KB
/
appStatus.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
# layout for section "Status"
# last update: 2016-10-10
source('appStatusDateSelect.R')
# source('uiStatusItemConfig.R')
appStatus <- function(){
fluidRow(
column(12,
# uiOutput('desktopUiStatusItemsRender')
appStatusDateSelect(),
bsAlert('dataStatus'),
tabsetPanel(type='tabs',
tabPanel('Verlauf', br(),
plotlyOutput('gonimoChart')
)
)
)
)
}
# constants for configurable Tabs
# defaultStatTabsName <- c('Plot')
#
# defaultStatTabsUI <- c(
# "
# tabPanel('Plot',
# plotOutput(outputId = ns('bank2Plot'), height = '300px')
# )
# "
# )
#
# defaultStatTabsLogic <- c(
# "
# output$bank2Plot <- renderPlot({
# data <- currData()
# plot(x=data$date, y=data$value, type='l',
# xlab='Datum', ylab='Euro')
#
# })
# "
# )