hrbrmstr / streamgraph

:wavy_dash: htmlwidget for creating streamgraph visualizations in R
http://hrbrmstr.github.io/streamgraph/
Other
148 stars 49 forks source link

Can we change the font size of the axis? #32

Open epioneMW opened 6 years ago

olyerickson commented 6 years ago

I'm also looking for guidance on this. I looked in e.g. sg_axis_x() source and it wasn't clear...

This is an awesome package, thanks!

olyerickson commented 6 years ago

Note, a blogger had this same problem, noted here: https://ouzor.github.io/blog/2015/08/31/twitter-streamgraph.html

elfatherbrown commented 3 years ago

Use css for this. Like so:

svg text {
  font-family: inherit;
  fill: lightgray;
  font-size: 1.1em;
}

there are also speciffic selectors for each axis. Inspect the axis text element to find out. It as something like: x.axis text { etc.. }