我在ng-chartist工作时遇到了问题。我按照此处的说明安装了所有内容:https://pixinvent.com/apex-angular-4-bootstrap-admin-template/documentation/documentation-charts-chartist.html
当我从ng-chartist导入ChartistModule时,我收到错误:
Error: Fetch error: 404 Not Found
Instantiating http://localhost:37337/ng-chartist
我试图给出ng-chartist的确切路径,但它不起作用。 我试图将图表加载为:
import * as Chartist from 'chartist';
但在创建图表实例时:
new Chartist.Line('.ct-chart', {
labels: myLabels,
series: myseriesData
}, {
low: 0,
showArea: true,
showPoint: true,
width: 400,
height: 400,
fullWidth: true,
});
我得到了同样的错误。