在使用networkD3呈现的sankey图上放置文本有诀窍吗?我希望将端点的值显示为其框右侧的文本。我意识到悬停在方框上会显示值,但随着方框变小,在很多情况下,如果值总是在侧面可见,则描绘信息会更容易。
这是一个例子;我可以通过将值添加为标签的一部分来破解它,但是将值显示在图的右侧会更好。
{{1}}
答案 0 :(得分:5)
抱歉,我刚刚遇到过这个问题。这对于onRender
中的新htmlwidgets
函数非常有用。我尝试在内联注释来解释添加JavaScript的几行来移动节点文本。这些lines中的networkD3
过滤器会根据宽度将展示位置更改为向右或向左。我们将它应用于所有文本,因此它将位于节点矩形的右侧。
library(networkD3)
library(data.table)
set.seed(1999)
links <- data.table(
src = rep(0:4, times=c(1,1,2,3,5)),
target = sample(1:11, 12, TRUE),
value = sample(100, 12)
)[src < target, ] # no loops
nodes <- data.table(name=LETTERS[1:12])
## Need to hover to get counts
sankeyNetwork(Links=links, Nodes=nodes, Source='src', Target='target',
Value='value', NodeID='name', fontSize=16)
## Add text to label
txt <- links[, .(total = sum(value)), by=c('target')]
nodes[txt$target+1L, name := paste0(name, ' (', txt$total, ')')]
## Displays the counts as part of the labels
sankeyNetwork(Links=links, Nodes=nodes, Source='src', Target='target',
Value='value', NodeID='name', fontSize=16, width=600, height=300)
#################### move leaf node text right ################
# for this to work
# install the newest htmlwidgets
# devtools::install_github("ramnathv/htmlwidgets")
library(htmlwidgets)
# add margin left since we'll need extra room
# if you are wondering why margin left,
# I think we just discovered a bug
sn <- sankeyNetwork(
Links=links, Nodes=nodes, Source='src', Target='target',
Value='value', NodeID='name', fontSize=16,
width=600, height=300,
# give us so room for our newly aligned labels
margin = list("left"=100)
)
# see how it looks
sn
# now let's use the new htmlwidget function
# onRender
onRender(
sn,
'
function(el,x){
// select all our node text
var node_text = d3.select(el)
.selectAll(".node text")
//and make them match
//https://github.com/christophergandrud/networkD3/blob/master/inst/htmlwidgets/sankeyNetwork.js#L180-L181
.attr("x", 6 + x.options.nodeWidth)
.attr("text-anchor", "start");
}
'
)