Hi,
Using the basic horizontal bar chart from the plotly site as an example (code below), is it possible to selectively (or individually) format the tick labels? For instance, can I make the text for “giraffes” a larger font, different color, and/or in bold text while leaving the other labels unchanged? If so, how?
I didn’t see any guidance in the axes documentation. I also scanned the API reference, but I may have missed something.
I’m still new to Plotly, so any guidance is appreciated.
import plotly.graph_objects as go
fig = go.Figure(go.Bar(
x=[20, 14, 23],
y=[‘giraffes’, ‘orangutans’, ‘monkeys’],
orientation=‘h’))
fig.show()