31 строка
784 B
TypeScript
31 строка
784 B
TypeScript
import 'syncfusion-javascript/Scripts/ej/datavisualization/ej.diagram.min';
|
|
import { CommonModule } from '@angular/common';
|
|
import { EJComponents } from './core';
|
|
import { EventEmitter, Type, Component, ElementRef, ChangeDetectorRef, Input, Output, NgModule, ModuleWithProviders } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
selector: 'ej-overview',
|
|
template: ''})
|
|
export class OverviewComponent extends EJComponents<any, any> {
|
|
@Input('options') options: any;
|
|
@Input('sourceID') sourceID_input: any;
|
|
@Input('height') height_input: any;
|
|
@Input('width') width_input: any;
|
|
|
|
|
|
|
|
constructor(public el: ElementRef, public cdRef: ChangeDetectorRef) {
|
|
super('Overview', el, cdRef, []);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
export var EJ_OVERVIEW_COMPONENTS: Type<any>[] = [OverviewComponent
|
|
];
|
|
|
|
|