我和aurelia,chart.js和moment.js有麻烦。
实际上,我在其他类中分别使用了moment.js和chart.js,它可以很好地工作。尽管如此,如果我尝试使用chart.js时间刻度特性在x刻度上绘制一个带有时间维度的图,我会得到这个错误:
[Warning] Unhandled rejection Error: Chart.js - Moment.js could not be found! You must include it before Chart.js to use the time scale. Download at https://momentjs.com
我正在尝试使用Chart.js重构一个旧的Flex应用程序,我想复制这个线性/对数轴。注意yAxis上干净的最小间距。
这是我的Chart.js代码。
var mtbsoData = [];
var mtbsoLables = [];
for (let i = 0; i <= 10; i++) {
mtbsoData.push(i * i * i * i);
mtbsoLables.push(i.toString());
}
var ctxMtbso = do
我正在尝试使用Chartjs构建React ChartsJS实时数据流我设法将画布渲染到页面上,但由于某些原因,我仍然不能像实时折线图数据那样移动,我不确定是否需要在ChartsJS页面中嵌入任何内容。我安装了这些包:chart.js,"chartjs-adapter-luxon": "^1.1.0,"chartjs-plugin-streaming": "^2.0.0",我希望有人能帮助我! import React from "react";
import { Line } from "react-cha