New graph types added (not all working unfortunately), new section added for table views and probably a lot of messy code too!
This commit is contained in:
parent
6649888876
commit
68cf9ee049
15 changed files with 368 additions and 26 deletions
27
src/app/dashboard/new-section.component.ts
Normal file
27
src/app/dashboard/new-section.component.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
import { Component, OnInit, AfterViewInit, Input, Output, EventEmitter, ViewChild, TemplateRef } from '@angular/core';
|
||||
import { ApiService } from '../providers/api-service';
|
||||
import { AgmCoreModule } from '@agm/core';
|
||||
import { BsModalService, ModalDirective } from 'ngx-bootstrap/modal';
|
||||
import { BsModalRef } from 'ngx-bootstrap/modal/bs-modal-ref.service';
|
||||
|
||||
|
||||
@Component({
|
||||
templateUrl: 'new-section.component.html',
|
||||
})
|
||||
export class NewSectionComponent implements OnInit, AfterViewInit {
|
||||
|
||||
constructor(
|
||||
private api: ApiService,
|
||||
) { }
|
||||
|
||||
ngOnInit(): void {
|
||||
|
||||
}
|
||||
|
||||
ngAfterViewInit() {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Reference in a new issue