Is there any way to format specific ticks in a plot?

Hey,
I’m working with a bar plot (go.Bar()), where I plot countries and a metric. I’d like to be able to highlight a specific country, something along the lines of this pseudo-code:

for tick in fig.xticks:
    if tick == 'Spain':
        tick = '<b>'+tick+ '</b>'

I know matplotlib has this kind of logic, but I couldn’t find anything similar in Dash’s documentation. Is it possible?
Thanks !