UNPKG

survey-analytics

Version:

SurveyJS analytics Library.

12 lines (11 loc) 475 B
import { SelectBase } from "./selectBase"; import { QuestionRankingModel } from "survey-core"; export declare class RankingModel extends SelectBase { constructor(question: QuestionRankingModel, data: Array<{ [index: string]: any; }>, options?: any, name?: string); getQuestionResults(): any[]; getEmptyData(): any; protected getCalculatedValuesCore(): Array<any>; applyResultToPlotlyData(result: any[], plotlyData: any, choices: any): void; }