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.

15 lines (14 loc) 629 B
import { ItemValue, QuestionMatrixDropdownModel, Question } from "survey-core"; import { SelectBase } from "./selectBase"; export declare class MatrixDropdownGrouped extends SelectBase { constructor(question: Question, data: Array<{ [index: string]: any; }>, options?: Object, name?: string); protected get matrixQuestion(): QuestionMatrixDropdownModel; get dataNames(): Array<string>; getSeriesValues(): Array<string>; getSeriesLabels(): Array<string>; valuesSource(): Array<ItemValue>; protected isSupportMissingAnswers(): boolean; protected getCalculatedValuesCore(): Array<any>; }