我正在尝试使用来自 chartist.js 链接的图表:https ://gionkunz.github.io/chartist-js/examples.html#simple-line-chart
当我尝试在我的代码中使用它们时,我让 Chartist 定义了如何将它导入到我的组件中?
代码:
import React, { Component } from 'react';
import chartistGraph from "react-chartist";
const simpleLineChartData = {
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
series: [
[12, 9, 7, 8, 5],
[2, 1, 3.5, 7, 3],
[1, 3, 4, 5, 6]
]
}
class Chart extends Component {
render(){
return(
<div>
<chartistGraph data={simpleLineChartData} type={'Line'} />
</div>
)}
}
export default Chart;
上面的代码给出错误,说 Chartist 未定义。如何导入一些库并在 reactjs 中使用它。