survey-analytics
Version:
SurveyJS analytics Library.
19 lines (18 loc) • 694 B
TypeScript
import { Question } from "survey-core";
import { SelectBase } from "./selectBase";
import "./statistics-table.scss";
export declare class StatisticsTableAdapter {
private model;
constructor(model: StatisticsTable);
create(container: HTMLElement): Promise<void>;
destroy(node: HTMLElement): void;
}
export declare class StatisticsTable extends SelectBase {
private _statisticsTableAdapter;
constructor(question: Question, data: Array<{
[index: string]: any;
}>, options?: Object, name?: string);
protected destroyContent(container: HTMLElement): void;
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
destroy(): void;
}