我安装angular2-highcharts
在我的 Angular 项目上,实现了它。它的工作,但在ng serve
模式。但是当我执行命令时ng build --prod
。我得到了错误:
模板编译时出错AppModule
装饰器不支持函数调用,但ChartModule
被调用了。
我执行时它工作正常ng build
。
这是我的app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
import { ChartModule } from 'angular2-highcharts';
import { AppComponent } from './app.component';
import { HttpModule } from '@angular/http';
declare var require : any;
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,HttpModule,
ChartModule.forRoot(require('highcharts/highstock'),require('highcharts/modules/drilldown')),
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
platformBrowserDynamic().bootstrapModule(AppModule);