使用胜利图,我创建了一个简单的条形图。在 X 轴上,我的数字很大,从 500,000 到 3,000,000。因为图表非常窄,所以 X 轴上的数字是重叠的。我的代码如下所示:
<VictoryChart>
theme={VictoryTheme.material}
<VictoryGroup
height={chartHeight}
offset={10}>
<VictoryBar
horizontal
data={chart2}
labels={d => d.y}
labelComponent={<VictoryLabel dy={10} />}
/>
<VictoryBar horizontal data={chart1} />
</VictoryGroup>
</VictoryChart>
- 我想要这样的 x 轴标签:500,000 -> 500K。
- 此外,在 x 轴上,我希望只有 4-5 个标签,它们总是均匀分布,例如 0、1000K、2000K、3000K、4000K。如果我有 x 轴达到 1000K 的数据,则分离将是 0、250K、500K、750K、1000K。