plotly.js を使用して ionic 3 プロジェクトでグラフをプロットしようとしていますが、単純なプロットの作成に問題があります。セットアップのために次のことを行いました。
npm install --save plotly.js
npm install --save @types/plotly.js
次に、イオン コンポーネントに以下を含めました。
import * as Plotly from 'plotly.js';
drawChart() {
const data = [{
x: ['giraffes', 'orangutans', 'monkeys'],
y: [20, 14, 23],
type: 'bar'
}];
Plotly.newPlot('myDiv', data);
}
私が今走っているとき
tsc
次のエラーが表示されます。
Argument of type '{ x: string[]; y: number[]; type: string; }[]' is not assignable to parameter of type 'Partial<ScatterData>[]'.
Type '{ x: string[]; y: number[]; type: string; }' is not assignable to type 'Partial<ScatterData>'.
Types of property 'type' are incompatible. Type 'string' is not assignable to type '"bar" | "pointcloud" | "scatter" | "scattergl" | "scatter3d" | "surface"'.
何か見逃しましたか?どんな助けでも大歓迎です