0

我正在使用 React Vis 创建一个简单的图表。这是我的代码:

import React from 'react';
import '../../../node_modules/react-vis/dist/style.css';
import {XYPlot, VerticalBarSeries} from 'react-vis';

const myData = [
  {x: 'A', y: 10},
  {x: 'B', y: 5},
  {x: 'C', y: 15}
]


export const Chart = () => {
  return (
      <XYPlot height={500} width={500}>
        <VerticalBarSeries data={myData} />
      </XYPlot>
  )
};

export default Chart;

我收到此错误消息: Received NaN for the `x` attribute. If this is expected, cast the value to a string."

当我将 myData 中的 x 值更改为整数时,它可以工作,但我需要它们作为字符串。该文档明确指出这应该有效: 在此处输入图像描述

4

0 回答 0