第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

折線圖不適用于類型時(shí)間 chart.js

折線圖不適用于類型時(shí)間 chart.js

元芳怎么了 2022-12-09 19:47:24
我將 chart.js 與 React 一起使用,但我無(wú)法弄清楚為什么折線圖不適用于type: 'time',也許我可能會(huì)遺漏一些東西:Chart.js 代碼沙箱import React from "react";import { Line } from "react-chartjs-2";const startDate = new Date(2020, 4, 20);const values = JSON.parse(json).responses[0].rows.map(row => row.values[0]);const options = {  legend: {    display: false  },  hover: {    mode: "index",    intersect: false,    animationDuration: 0  },  scales: {    yAxes: [{ position: "right" }],    xAxes: [      {        gridLines: { display: false },        type: "time",        time: {          parser: "MMM D",          unit: "day",          unitStepSize: 5,          displayFormats: {            day: "MMM D"          }        },        ticks: {          min: startDate, //May 20          max: new Date()        }      }    ]  },  tooltips: {    mode: "x-axis"  }};const data = {  datasets: [    {      label: "data",      fill: false,      data: values,      backgroundColor: "pink",      borderWidth: 2,      lineTension: 0,      borderColor: "pink",      hoverBorderWidth: 2,      pointBorderColor: "rgba(0, 0, 0, 0)",      pointBackgroundColor: "rgba(0, 0, 0, 0)",      pointHoverBackgroundColor: "#fff",      pointHoverBorderColor: "pink",      showLine: true    }  ]};const LineChart = () => {  return (    <div style={{ maxWidth: 1024, margin: "32px auto" }}>      <Line data={data} options={options} />    </div>  );};export default LineChart;
查看完整描述

1 回答

?
叮當(dāng)貓咪

TA貢獻(xiàn)1776條經(jīng)驗(yàn) 獲得超12個(gè)贊

您應(yīng)該像這樣生成特定的數(shù)據(jù)集:


const values = JSON.parse(json).responses[0].rows.map((row, index) => {

  let date = new Date(2020, 4, 20);

  date.setDate(startDate.getDate() + index)

  return {

    y: row.values[0],

    x: date

  };

});

例子


查看完整回答
反對(duì) 回復(fù) 2022-12-09
  • 1 回答
  • 0 關(guān)注
  • 80 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)