thf
thf

Reputation: 604

Change font size of series label in Google Line Chart

Is there an option to set the font size for the labels given to each series line, which show up to the right in Google Charts? In the overview example (https://developers.google.com/chart/interactive/docs/gallery/linechart) the labels I'm referring to are "Dogs" and "Cats". My chart has a lot of series, and the labels are too numerous and get cut off at the bottom of the chart. I want to make them smaller so they fit.

Upvotes: 1

Views: 1365

Answers (1)

WhiteHat
WhiteHat

Reputation: 61232

use the following option...

legend.textStyle.fontSize

e.g.

legend: {
  textStyle: {
    fontSize: 8
  }
}

Upvotes: 2

Related Questions