survey-analytics
Version:
SurveyJS analytics Library.
14 lines (13 loc) • 560 B
TypeScript
import { Question } from "survey-core";
import { HistogramModel } from "../histogram";
export declare class HistogramPlotly extends HistogramModel {
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>;
protected getCalculatedValuesCore(): Array<any>;
getValueType(): "date" | "number";
}