Angular2 (バージョン 2.4.8) でビルドされたプロジェクトにいくつかのチャートを実装する必要があります。ng2-charts (バージョン 1.5.0) を使用し、chart.js の使用バージョンは 2.5.0 です。まず、ng2-charts の Web サイトからサンプル コードをコピーしました。エラーはありませんが、チャートはありません。
チャートを使用する私のコンポーネント: HomeComponent.ts
import { Component, VERSION } from '@angular/core';
@Component({
selector: 'pulpe-home-cmp',
templateUrl: './app/components/Home/HomeView.html'
})
export class HomeComponent {
constructor(){
console.log(VERSION.full)
}
// Doughnut
public doughnutChartLabels:string[] = ['Download Sales', 'In-Store Sales', 'Mail-Order Sales'];
public doughnutChartData:number[] = [350, 450, 100];
public doughnutChartType:string = 'doughnut';
// events
public chartClicked(e:any):void {
console.log(e);
}
public chartHovered(e:any):void {
console.log(e);
}
}
表示: HomeView.html
<div style="display: block">
<canvas baseChart
[data]="doughnutChartData"
[labels]="doughnutChartLabels"
[chartType]="doughnutChartType"
(chartHover)="chartHovered($event)" (chartClick)="chartClicked($event)">
</canvas>
</div>
Systemjs : systemjs.config.js
map: { ...
'ng2-charts': 'node_modules/ng2-charts'
},
package : {
'ng2-charts': { main: 'ng2-charts.js', defaultExtension: 'js' }
}
私のアプリモジュール: app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { PulpeAppComponent } from './app.component';
import { HomeComponent } from './components/Home/HomeComponent';
import { MenuBarComponent } from './components/MenuBar/MenuBarComponent';
import { SigninComponent } from './components/Signin/SigninComponent';
import { RouterModule } from '@angular/router'
import { ROUTES } from './app.routes'; // ROUTING HERE!
import { APP_BASE_HREF } from '@angular/common';
import { ChartsModule } from 'ng2-charts';
@NgModule({
imports: [BrowserModule, RouterModule.forRoot(ROUTES), ChartsModule],
declarations: [
PulpeAppComponent,
MenuBarComponent,
HomeComponent,
SigninComponent
],
bootstrap: [PulpeAppComponent],
providers:[
{provide: APP_BASE_HREF, useValue : '/' }
]
})
export class PulpeModule {
}
index.html :
<script src="node_modules/chart.js/dist/Chart.bundle.js"></script>
ウェブサイトの例のように src/chart.js を試してみましたが、エラーが発生し (require が定義されていません)、dist/Chart.js を使用しても同じで、何も表示されませんでした ...
4時間の検索の後、私はあなたに目を向けます...いくつかのアイデアはありますか? ありがとう