如何在重新图表中将字符串与值连接起来 - ReactJS

How concatenate string with value in recharts - ReactJS

当值显示在条形顶部时,我想将“%”与 barchart 上的值连接起来。

怎么做?

 <ResponsiveContainer width="99%" aspect={4}>
      <BarChart data={chartData} margin={{ top: 0, left: -30, right: 0, bottom: 0 }}>
        <Bar dataKey='hum' name="Humidity" barSize={15} fill='rgba(0, 60, 255, 0.6)' unit=" %" >
        <LabelList dataKey="hum" position="top" />
        </Bar>
        <CartesianGrid stroke="#ccc" strokeDasharray="5 5" />
        <XAxis dataKey="date" tick={{ fontSize: 12, fill: 'black' }} tickFormatter={(unixTime) => moment(unixTime).format('DD.MM - HHч.')} interval={1} />
        <YAxis tick={{ fontSize: 12, fill: 'black' }} />
        <Tooltip />
      </BarChart>
 </ResponsiveContainer>

我return这样的数据:

formatData = (data) =>
data.map(({ dt_txt, main, pop }) => ({
  // date -> Can be used as dataKey for XAxis
  //Further you can format the date as per your need
  date: dt_txt,
  // temp -> Can be used as dataKey for Line
  temp: main.temp,
  hum: main.humidity,
  rain:  pop
}));

我想将“%”连接成嗡嗡声 属性 并在图表上显示数值。

尝试在 YAxis 中给出“单位”属性,像这样

编辑: 尝试像这样更改 LabelList 标签。

<LabelList dataKey="hum" position="top" content={renderLabel} />

并在您的代码中添加以下功能性 React 组件。

const renderLabel= ({value}) => {

  return (
    <span>{ value + '%'}</span>
  );
};