PatriciaW
PatriciaW

Reputation: 913

How can I change the font-size of text in d3-legend?

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

Answers (2)

PatriciaW
PatriciaW

Reputation: 913

g.cell text.label { ... } worked.

Upvotes: 0

moki
moki

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

Related Questions