You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
links<-data.frame(
source= c(0, 0, 1, 2),
target= c(1, 2, 3, 3),
value= c(10, 20, 10, 20)
)
nodes<-data.frame(
label= c("I am using \n in this string",
"I am using \r in this string",
"I am using <br> in this string",
"I am using in this string")
)
sankeyD3plus::sankeyNetwork(
Links=links,
Nodes=nodes,
Source="source",
Target="target",
Value="value",
NodeID="label",
xAxisDomain= c("Hello\nWorld", "Hello World", "Hello<br>World")
)
List of enhancements
fontSize
should also affect thexAxisDomain
NodeID
andxAxisDomain
sinksRight = TRUE
fromnetworkD3::sankeyNetwork()
Reprex for enhancements
Enhancement 1
Created on 2023-08-03 with reprex v2.0.2
Enhancement 2
Created on 2023-08-03 with reprex v2.0.2
Enhancement 3
Created on 2023-08-03 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: