You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpModule, JsonpModule } from '@angular/http';
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
import { ChartModule } from 'angular2-highcharts';
import { AppComponent } from './app.component';
import { APP_CONFIG, TagVal_AppConfig } from './app.config';
import { AppRoutingModule } from './app-routing.module';
import { TradePageComponent } from './components/trade-page/trade-page.component';
@NgModule({
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
HttpModule,
HttpClientModule,
ChartModule.forRoot(require('highcharts')),
JsonpModule,
],
declarations: [
AppComponent,
TradePageComponent,
],
providers: [
{ provide: APP_CONFIG, useValue: TagVal_AppConfig },
],
bootstrap: [ AppComponent ],
})
export class AppModule { }
I also import ChartModule on the component I'm trying to put my chart in, but I get this error: Uncaught Error: Can't resolve all parameters for HighchartsService: (?).
On app.module.ts I have:
I also import ChartModule on the component I'm trying to put my chart in, but I get this error: Uncaught Error: Can't resolve all parameters for HighchartsService: (?).
I don't a site to run it live, but my project is here: https://github.com/TroyTaylor/binance-app
The text was updated successfully, but these errors were encountered: