survey-analytics
Version:
SurveyJS analytics Library.
12 lines (11 loc) • 446 B
TypeScript
import { Question } from "survey-core";
import { Matrix } from "../matrix";
export declare class MatrixPlotly extends Matrix {
private _chartAdapter;
static types: string[];
constructor(question: Question, data: Array<{
[index: string]: any;
}>, options?: Object, name?: string);
protected destroyContent(container: HTMLElement): void;
protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
}