在recharts中,可以通过设置axisTick属性来调整轴的刻度线大小均匀。具体的设置方法如下:
import { LineChart, XAxis, YAxis, CartesianGrid, Line } from 'recharts';
import 'recharts/cartesian/axis/Line';
<LineChart width={500} height={300} data={data}>
<XAxis
dataKey="name"
tick={<CustomizedXAxisTick />}
/>
<YAxis
tick={<CustomizedYAxisTick />}
/>
<CartesianGrid strokeDasharray="3 3" />
<Line type="monotone" dataKey="uv" stroke="#8884d8" />
</LineChart>
const CustomizedXAxisTick = (props) => {
const { x, y, payload } = props;
return (
<g transform={`translate(${x},${y})`}>
<text x={0} y={0} dy={16} textAnchor="end" fill="#666" transform="rotate(-35)">
{payload.value}
</text>
<line x1={0} y1={0} x2={0} y2={10} stroke="#666" />
</g>
);
};
const CustomizedYAxisTick = (props) => {
const { x, y, payload } = props;
return (
<g transform={`translate(${x},${y})`}>
<line x1={-5} y1={0} x2={5} y2={0} stroke="#666" />
<text x={10} y={0} dy={5} textAnchor="start" fill="#666">
{payload.value}
</text>
</g>
);
};
通过上述设置,可以在保持recharts轴的最大值不变的情况下,使轴的刻度线大小均匀。你可以根据需要进一步调整刻度线的样式和位置。
关于recharts库的更多信息和使用方法,可以参考腾讯云的产品介绍链接地址:recharts - 腾讯云产品介绍
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云