abc-charts
Version:
Widget render for using in 'ABC consulting' projects
19 lines (18 loc) • 704 B
TypeScript
import { IWidgetVariables, ISettings } from "../../interfaces";
import { Chart } from "../../models/Chart";
import { IWidgetSettings } from "../../widgetSettings";
import { WidgetConfigInner } from "../..";
import { WidgetOptions } from "../../models/widgetOptions";
export declare class Report extends Chart {
constructor(config: WidgetConfigInner, options: WidgetOptions);
getVariables(): IWidgetVariables;
getSettings(): IWidgetSettings;
getStyles(): ISettings;
run(): void;
/**
* Обработка событий
* NOTE: все данные меняются в this.config.template
*/
private onEventBusFunc;
getTemplate(): string;
}