reactjs - 属性 'type' 在类型中缺失。但在类型 'Props' 中是必需的

标签 reactjs typescript react-chartjs-2

enter image description here将我的 react es6 comp 转换为 typescript 时,我在第 16 行(

类型“{数据:{标签:字符串[]中缺少属性“类型”;数据集:{ 标签:字符串;数据:字符串[]; }[]; };高度:数字;宽度:数字;选项:{ maintainAspectRatio: bool 值;尺度:{ yAxes:{ 刻度:{ beginAtZero: bool 值; }; }[]; };传奇: { ...; }; }; }' 但在类型 'Props' 中是必需的。

import React from "react";
import { Line, defaults } from "react-chartjs-2";

defaults.plugins.tooltip.enabled = true;
defaults.plugins.legend.position = "bottom";

interface Props {
  currencyValues: string[],
  dateList: string[],
}

const LineGraph = ({ currencyValues, dateList }: Props) => {
  return (
    <div className="graphContainer">
      {currencyValues.length ? (
        <Line
          data={{
            labels: [...dateList],
            datasets: [
              {
                label: "Historical Dates",
                data: [...currencyValues],
              },
            ],
          }}
          height={400}
          width={600}
          options={{
            maintainAspectRatio: false,
            scales: {
              yAxes: [
                {
                  ticks: {
                    beginAtZero: true,
                  },
                },
              ],
            },
            legend: {
              labels: {
                fontSize: 25,
              },
            },
          }}
        />
      ) : null}
    </div>
  );
};

export default LineGraph;

最佳答案

看起来类型定义说 type Prop 是强制性的。这似乎是图书馆作者的一个错误,在 github 上有多个 Unresolved 问题(12)

如果你传入一个 type prop,它会消除类型错误,并且没有任何效果(因为 Line 组件 overwrites type prop):

<Line
  type="line"
  data={{
    //etc

关于reactjs - 属性 'type' 在类型中缺失。但在类型 'Props' 中是必需的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67376849/

相关文章:

reactjs - 在 React Native 中流式传输音频记录

javascript - 无法使用react-form以编程方式设置文本

javascript - 如何将外部 javascript 库添加到 ionic 3 typescript 项目

javascript - Webpack + React 和 Google Chrome 43.0.2357.65

javascript - 在提交表单上显示模态

所有派生接口(interface)的 TypeScript 类型

reactjs - 无法解析 'chart.js/auto'

javascript - chartjs-plugin-zoom 不适用于我的 React 项目

reactjs - 为条形图中的条形指定半径

javascript - Mobx 不观察可观察数组中的类