GollyJer
GollyJer

Reputation: 26672

How do you format the tickLabel color of Victory Charts VictoryAxis?

<VictoryAxis
  tickFormat={tickFormat}
  tickValues={tickValues}
  style={{
    tickLabels: {color: 'white'}, // 👈 not working
  }}
/>

How do I change the tickLabel color?

Upvotes: 0

Views: 1193

Answers (1)

bas
bas

Reputation: 15722

I think you're looking for fill instead of color:

// ...
style={{
   tickLabels: {fill: 'white'}, 
}}
// ...

Upvotes: 3

Related Questions