这应该是一件很简单的事情,但是对于我的生活我无法达到我想要的效果,我有一个图表,在深色背景上,这意味着我想将标签的颜色更改为白色,但是我无法做到这一点。
我正在使用的代码:
<VictoryChart
width={WIDTH}
// theme={VictoryTheme.material}
>
{/* <VictoryBar data={data} x="quarter" y="earnings" /> */}
<VictoryArea data={outcome} x="quarter" y="earnings" style={{ data: { fill: '#0074B7', fillOpacity: 0.7, stroke: '#0C7BBB', strokeWidth: 1 } }} />
{/* <VictoryArea data={income} x="quarter" y="earnings" style={{ data: { fill: '#9BC578', fillOpacity: 0.7, stroke: '#37B875', strokeWidth: 1 } }} /> */}
</VictoryChart>
任何帮助表示赞赏。