Style font node labels sankey diagram

Hi all,

Is it possible to style the font for the node labels in a Sankey diagram. Looking at the CSS is it s node-label class, but I don’t know how to adjust it.

Thanks in advance,
Daniel

I know this question was from a while ago and I’m sure you read the reference https://plot.ly/r/reference/ and found this, but for R it’s under textfont:

p <- plot_ly(
type = “sankey”,
orientation = “h”,
textfont = list(size=20),

node = list(

1 Like