UNPKG

survey-analytics

Version:

SurveyJS Dashboard is a UI component for visualizing and analyzing survey data. It interprets the form JSON schema to identify question types and renders collected responses using interactive charts and tables.

25 lines (24 loc) 808 B
import { Question } from "survey-core"; import { VisualizerBase } from "./visualizerBase"; import "./text.scss"; export declare class TextTableAdapter { private model; constructor(model: Text); create(container: HTMLElement): Promise<void>; destroy(node: HTMLElement): void; } export declare class Text extends VisualizerBase { private _textTableAdapter; constructor(question: Question, data: Array<{ [index: string]: any; }>, options?: Object, name?: string); get columns(): Array<{ name: string; title: string; type: string; }>; protected getCalculatedValuesCore(): any; protected destroyContent(container: HTMLElement): void; protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>; destroy(): void; }