6

我想像在这个演示中那样对长标签进行自动换行。据说这个 PR支持它,但我无法使用它

<XAxis dataKey="name" interval={0} width={30} label={<Text width={30} />} />
4

1 回答 1

4

lisamartin00这里有一个例子

她使用了自定义轴刻度:

const CustomizedAxisTick = React.createClass({
  render () {
    const {x, y, payload} = this.props;

    return <Text x={x} y={y} width={75} textAnchor="middle" verticalAnchor="start">{payload.value}</Text>
  }
});
于 2020-04-17T08:17:15.367 回答