Search code examples
reactjsreact-nativevictory-charts

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?


Solution

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

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