当用户将数据广告的行名称悬停/点击时,我一直试图包含类似工具提示或popover的附加信息,因此他们不必查找某些定义,我目前有一个不同的tabPanel。这是一个有效的例子:
library(shiny)
library(DT)
library(shinyBS)
# Define server for the Shiny app
shinyServer(function(input, output,session) {
tdata <- as.data.frame(iris)
# Render table here
output$mytable <- DT::renderDataTable(DT::datatable(
tdata[1:5,],
options = list(paging = FALSE, searching = FALSE, info = FALSE, sort = FALSE,
columnDefs=list(list(targets=1:4, class="dt-right")) ),
rownames = paste("rowname",1:5),
container = htmltools::withTags(table(
class = 'display',
thead(
tr(lapply(rep(c('ratios','name1', 'name2', 'name3','name4','name5'), 1),th))
)
))
))
}) # end of shinyServer function
library(shiny)
library(DT)
library(shinyBS)
shinyUI(
mainPanel(
DT::dataTableOutput("mytable")
)
)
请注意,我看过以下讨论主题,但没有成功: R shiny mouseover text for table columns,以及 Add bootstrap tooltip to column header in shiny app 因此,我在思考DT-package选项中的某些内容,或使用shinyBS包的内容(如&#39; bsTooltip&#39;)或添加一些HTML或JS。 在数据表中,Shiny似乎没有自然支持这个工具提示/弹出功能......!
答案 0 :(得分:6)
此代码有效但在客户端模式下运行。为了简单起见,我使用了虹膜数据集的前五行,但我想这个想法很清楚。如果将鼠标悬停在行名称上,将显示工具提示。
ui.R
library(shiny)
library(DT)
shinyUI(
mainPanel(
DT::dataTableOutput("tbl")
)
)
server.R
library(shiny)
library(DT)
shinyServer(function(input, output,session) {
output$tbl = DT::renderDataTable(
datatable(iris[1:5, ], callback = JS("
var tips = ['First row name', 'Second row name', 'Third row name',
'Fourth row name', 'Fifth row name'],
firstColumn = $('#tbl tr td:first-child');
for (var i = 0; i < tips.length; i++) {
$(firstColumn[i]).attr('title', tips[i]);
}")), server = FALSE)
})
答案 1 :(得分:1)
它没有用,因为您的代码没有使用title
属性,该属性用于在悬停时显示标签。
container = htmltools::withTags(table(
class = 'display',
thead(
tr(lapply(rep(c('ratios','name1', 'name2', 'name3','name4','name5'), 1),th))
)
))
# OUTPUT OF CONTAINER
#<table class="display">
# <thead>
# <tr>
# <th>ratios</th>
# <th>name1</th>
# <th>name2</th>
# <th>name3</th>
# <th>name4</th>
# <th>name5</th>
# </tr>
# </thead>
#</table>
我将您的代码更改为以下内容(使用title属性),现在它应该可以工作:
标签设置为columnLabels <- paste0("label", 1:6)
,而不是仅更改容器。
# Render table here
output$mytable <- DT::renderDataTable({
columnLabels <- paste0("label", 1:6)
DT::datatable(
tdata[1:5,],
options = list(paging = FALSE, searching = FALSE, info = FALSE, sort = FALSE,
columnDefs=list(list(targets=1:4, class="dt-right")) ),
rownames = paste("rowname",1:5),
container = htmltools::withTags(table(
class = 'display',
thead(
#tags$th(title=active_columns[i], colnames(data)[i])
tr(apply(data.frame(colnames=c('ratios','name1', 'name2', 'name3','name4','name5'), labels=columnLabels), 1,
function(x) th(title=x[2], x[1])))
)
))
)
})
# OUTPUT OF CONTAINER
#<table class="display">
# <thead>
# <tr>
# <th title="label1">ratios</th>
# <th title="label2">name1</th>
# <th title="label3">name2</th>
# <th title="label4">name3</th>
# <th title="label5">name4</th>
# <th title="label6">name5</th>
# </tr>
# </thead>
#</table>