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.

34 lines (33 loc) 1.11 kB
import { BooleanModel } from "../boolean"; import { SelectBase } from "../selectBase"; import { HistogramModel } from "../histogram"; import { Matrix } from "../matrix"; import { MatrixDropdownGrouped } from "../matrixDropdownGrouped"; import { PivotModel } from "../pivot"; import { NumberModel } from "../number"; import { RankingModel } from "../ranking"; export declare class SelectBasePlotly extends SelectBase { static types: string[]; static displayModeBar: any; } export declare class BooleanPlotly extends BooleanModel { static types: string[]; } export declare class HistogramPlotly extends HistogramModel { static types: string[]; } export declare class MatrixPlotly extends Matrix { static types: string[]; } export declare class MatrixDropdownGroupedPlotly extends MatrixDropdownGrouped { static types: string[]; } export declare class PivotPlotly extends PivotModel { static types: string[]; } export declare class GaugePlotly extends NumberModel { static displayModeBar: any; static types: string[]; } export declare class RankingPlotly extends RankingModel { }