Reputation: 913
This may be obvious but I can't find out how to change the size of font for different devices.
The documentation for d3-legend says that it does not use css.
Upvotes: 0
Views: 839
Reputation: 110
CSS will still work if you select the SVG element containing your legend text. Here's an example in CSS.
svg text {
font-size:1.5em;
}
Upvotes: 1