survey-analytics 1.8.75 → 1.8.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/survey.analytics.css +1 -1
- package/survey.analytics.d.ts +36 -28
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +1 -1
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +1 -1
- package/survey.analytics.js +14 -2
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +2 -2
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
package/package.json
CHANGED
package/survey.analytics.css
CHANGED
package/survey.analytics.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*Type definitions for SurveyJS Analytics library v1.8.
|
|
1
|
+
/*Type definitions for SurveyJS Analytics library v1.8.76
|
|
2
2
|
Copyright (c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
3
3
|
Definitions by: Devsoft Baltic OÜ <https://github.com/surveyjs/>
|
|
4
4
|
*/
|
|
@@ -1125,33 +1125,41 @@ export class MatrixDropdownGrouped extends SelectBase {
|
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
1127
1127
|
export class HistogramModel extends SelectBase {
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1128
|
+
protected valueType: "date" | "number";
|
|
1129
|
+
protected chartTypes: string[];
|
|
1130
|
+
chartType: string;
|
|
1131
|
+
static IntervalsCount: number;
|
|
1132
|
+
static UseIntervalsFrom: number;
|
|
1133
|
+
constructor(question: Question, data: Array<{
|
|
1134
|
+
[index: string]: any;
|
|
1135
|
+
}>, options?: Object, name?: string);
|
|
1136
|
+
/**
|
|
1137
|
+
* Series values getter. Some questions (used in matrices) should be grouped by matrix rows. This groups are called series.
|
|
1138
|
+
*/
|
|
1139
|
+
getSeriesValues(): Array<string>;
|
|
1140
|
+
/**
|
|
1141
|
+
* Series labels getter. Some questions (used in matrices) should be grouped by matrix rows. This groups are called series.
|
|
1142
|
+
*/
|
|
1143
|
+
getSeriesLabels(): Array<string>;
|
|
1144
|
+
getContiniousValue(value: any): number;
|
|
1145
|
+
getString(value: number): string;
|
|
1146
|
+
getSelectedItemByText(itemText: string): ItemValue;
|
|
1147
|
+
/**
|
|
1148
|
+
* Updates visualizer data.
|
|
1149
|
+
*/
|
|
1150
|
+
updateData(data: Array<{
|
|
1151
|
+
[index: string]: any;
|
|
1152
|
+
}>): void;
|
|
1153
|
+
protected onDataChanged(): void;
|
|
1154
|
+
protected getContiniousValues(): {
|
|
1155
|
+
original: any;
|
|
1156
|
+
continious: number;
|
|
1157
|
+
}[];
|
|
1158
|
+
getValues(): Array<any>;
|
|
1159
|
+
getLabels(): Array<string>;
|
|
1160
|
+
get hasCustomIntervals(): boolean;
|
|
1161
|
+
get intervals(): any;
|
|
1162
|
+
getData(): any;
|
|
1155
1163
|
}
|
|
1156
1164
|
|
|
1157
1165
|
export class NumberModel extends VisualizerBase {
|