Change size of text in color legend?

Hi,

I am using Plot to create a scatter chart. I increased the bit the size of the axis marks etc with:

style: { fontSize: 16 }.

It looks like this:

This is very nice, but as you might have noticed, the size of the text in the color legend hasn’t changed? Any idea if it’s possible to change it too? I can’t seem to find a solution.

Thanks!

1 Like

One option, though less than ideal, is to use CSS instead of the Plot API directly. You can add a className property to the color field, which will let you target the legend. Note that the class name will have -ramp appended. You might also want to adjust the margin of the legend.

JavaScript

Plot.plot({
...
color: { className: "large-font"}
})

CSS

.large-font-ramp {
  font-size: 16px;
  margin-bottom: 20px;
}

Full example here.

3 Likes

Thank you!

I often struggle with labels in Observable. Font size of titles and legend text etc. Hope this will be prioritized in coming releases of Plot. Data science folks are used to be able to get relatively fine grained control of these things.

1 Like