<VictoryAxis
tickFormat={tickFormat}
tickValues={tickValues}
style={{
tickLabels: {color: 'white'}, // 👈 not working
}}
/>
How do I change the tickLabel color?
I think you're looking for fill
instead of color
:
// ...
style={{
tickLabels: {fill: 'white'},
}}
// ...