↧
Answer by Brad Carter for Change Font Size on rCharts Sankey Diagram
I was able to change the font size after creating the sankey diagram by setting the fontSize option:#create sankey diagramp<-sankeyNetwork(...)#the default font size > p$x$options$fontSize [1]...
View ArticleAnswer by NicE for Change Font Size on rCharts Sankey Diagram
Based on this answer you can add scripts to customize your plots. To change the text-size, you could add:sankeyPlot$setTemplate( afterScript = "<script>d3.selectAll('#{{ chartId }} svg text')...
View ArticleChange Font Size on rCharts Sankey Diagram
I'm using the following code to create a Sankey Diagram using rCharts. I wish to increase the font size of the text printed on the Sankey Diagram. I can't find a manual to show me how to do this....
View Article