如何格式化 Victory Charts VictoryAxis 的 tickLabel 颜色?
How do you format the tickLabel color of Victory Charts VictoryAxis?
<VictoryAxis
tickFormat={tickFormat}
tickValues={tickValues}
style={{
tickLabels: {color: 'white'}, // not working
}}
/>
如何更改 tickLabel 颜色?
我认为您正在寻找 fill
而不是 color
:
// ...
style={{
tickLabels: {fill: 'white'},
}}
// ...
<VictoryAxis
tickFormat={tickFormat}
tickValues={tickValues}
style={{
tickLabels: {color: 'white'}, // not working
}}
/>
如何更改 tickLabel 颜色?
我认为您正在寻找 fill
而不是 color
:
// ...
style={{
tickLabels: {fill: 'white'},
}}
// ...