Specifying font weights?

Hello, does anyone know of a way to specify font weights for chart text, such as in tick text?

I see that y-axis tickfont only takes color, family, and size parameters, and nothing for “weight.” Is there any other way to set the font weight in ticks?

Thanks very much!

Hi @naterattner ! Have you tried this? how to set the bold font style in Plotly - Stack Overflow

Thanks you @celia! I should have clarified that I needed to make the font weight light rather than bold, but I ended up being able to specify this right in the font family like so:

'tickfont': {'color': '#333333', 'family': 'Avenir Light', 'size': 13}

I appreciate your response!