stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
22 lines (21 loc) • 1 kB
TypeScript
import { OnInit, AfterViewInit, ElementRef } from '@angular/core';
import { ModelService } from '../services/model.service';
import { HelperService } from '../services/helper.service';
import { DashboardService } from '../services/dashboard.service';
import * as i0 from "@angular/core";
export declare class DashboardsPanelComponent implements OnInit, AfterViewInit {
model: ModelService;
helper: HelperService;
dashboardService: DashboardService;
element: ElementRef;
imagesPath: string;
constructor(model: ModelService, helper: HelperService, dashboardService: DashboardService);
ngOnInit(): void;
ngAfterViewInit(): void;
get dbsMode(): boolean;
get dashboardsCount(): number;
get reportsCount(): number;
get previewSettings(): any;
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardsPanelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardsPanelComponent, "sti-dashboards-panel", never, {}, {}, never, never, false, never>;
}