I want to set y lable background color when condition is true, I did it when I plot bar chart by code as below:
for tick in ax.get_yticklabels():
if tick.get_text() in constants.greyLabels:
tick.set_backgroundcolor('lightgrey')
Can I do it in bar_chart_race?
