私のプロジェクトでD3チャートを使用したいと考えています。角度2または4のD3チャートの使用方法
私はインストールプロセスに従いました。それが正常に機能していないため、私は別のソリューションを提供して、既存のプロジェクトに実装することができます。
npm install d3-ng2-service --save
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, ApplicationRef } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { D3Service } from 'd3-ng2-service'; // <-- import statement
@NgModule({
declarations: [
AppComponent,
TestD3Component // <-- declaration of the D3 Test component used below
],
imports: [
BrowserModule,
CommonModule,
FormsModule
],
providers: [D3Service], // <-- provider registration
entryComponents: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {
}
あなたのエラーは何ですか?これは私にとってはOKだと思われます – trichetriche
コンソールでエラーが発生しましたか?もしそうなら、plsはそれらを投稿する。 – Dhyey