如何解决未捕获的错误:此方法未在react-chartjs-2中实现

问题描述 投票:0回答:1

我正在使用react-chartjs-2创建折线图。在那个grpah中,我想在xAxes中使用时间。但是我收到以下错误。

Chart.js:10609 Uncaught Error: This method is not implemented: either no adapter can be found or an incomplete integration was provided

这是我的代码。

render() {
    var startDate = moment().subtract(1, 'year').format('MMM YYYY');
    var endDate = moment().format('MMM YYYY');
    const data = {
      labels: [startDate, endDate],
      datasets: [
        {
          label: 'NPS Score',
          fill: false,
          lineTension: 0.2,
          backgroundColor: 'rgba(75,192,192,0.4)',
          borderColor: 'rgba(75,192,192,1)',
          borderDash: [],
          borderDashOffset: 0.0,
          pointBorderColor: 'rgba(75,192,192,1)',
          pointBackgroundColor: '#fff',
          pointBorderWidth: 1,
          pointHoverRadius: 5,
          pointHoverBackgroundColor: 'rgba(75,192,192,1)',
          pointHoverBorderColor: 'rgba(220,220,220,1)',
          pointHoverBorderWidth: 2,
          pointRadius: 1,
          pointHitRadius: 10,
          data: this.state.data,
        },
      ],
    };

    const lineOptions = {
      scales: {
        xAxes: [
          {
            type: 'time',
            time: {
              unit: 'month',
              tooltipFormat: 'lll',
            },
            ticks: {
              maxTicksLimit: 12,
            },
          },
        ],
        yAxes: [
          {
            stacked: true,
            gridLines: {
              display: false,
            },
            ticks: {
              suggestedMin: 100,
              suggestedMax: 0,
            },
          },
        ],
      },
      legend: {
        display: false,
      },
      tooltips: {
        enabled: true,
      },
    };
    return <Line data={data} options={lineOptions} height={120} />;

我找不到解决此问题的方法。有些问题具有相同的错误,但与react js无关。谁能帮我这个。预先感谢。

reactjs charts react-chartjs
1个回答
0
投票

问题出在moment.js。较新的版本有问题。最好的选择是降级moment.js版本。这是我固定的方法。

1)在package.json中更新依赖项版本>

"dependencies": {
    "chart.js": "2.9.3",
    "moment": "2.24.0",
    "moment-timezone": "^0.5.28",
    "react-chartjs-2": "2.9.0",
 }

2)将以下代码添加到package.json中>

"resolutions": {
    "moment": "2.24.0"
},

现在package.json应该看起来像这样

"dependencies": {
    "chart.js": "2.9.3",
    "moment": "2.24.0",
    "moment-timezone": "^0.5.28",
    "react-chartjs-2": "2.9.0",
},
"resolutions": {
    "moment": "2.24.0"
},

请注意,我没有在此处包括所有软件包。

3)删除整个node_modules

文件夹和。lock文件(yarn.lock或package-lock.json)

4)运行yarn installnpm install

这对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.