survey-analytics 1.9.135 → 1.9.136
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 +2 -2
- package/survey-analytics-datatables.types/analytics-localization/arabic.d.ts +4 -4
- package/survey-analytics-datatables.types/analytics-localization/dutch.d.ts +17 -0
- package/survey-analytics-datatables.types/analytics-localization/english.d.ts +0 -4
- package/survey-analytics-datatables.types/analytics-localization/farsi.d.ts +46 -0
- package/survey-analytics-datatables.types/analytics-localization/french.d.ts +22 -2
- package/survey-analytics-datatables.types/analytics-localization/norwegian.d.ts +27 -0
- package/survey-analytics-datatables.types/analytics-localization/portuguese.d.ts +0 -4
- package/survey-analytics-datatables.types/analytics-localization/russian.d.ts +32 -0
- package/survey-analytics-datatables.types/localizationManager.d.ts +0 -4
- package/survey-analytics-tabulator.types/analytics-localization/arabic.d.ts +4 -4
- package/survey-analytics-tabulator.types/analytics-localization/dutch.d.ts +17 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +0 -4
- package/survey-analytics-tabulator.types/analytics-localization/farsi.d.ts +46 -0
- package/survey-analytics-tabulator.types/analytics-localization/french.d.ts +22 -2
- package/survey-analytics-tabulator.types/analytics-localization/norwegian.d.ts +27 -0
- package/survey-analytics-tabulator.types/analytics-localization/portuguese.d.ts +0 -4
- package/survey-analytics-tabulator.types/analytics-localization/russian.d.ts +32 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +0 -4
- package/survey-analytics.types/analytics-localization/arabic.d.ts +4 -4
- package/survey-analytics.types/analytics-localization/dutch.d.ts +17 -0
- package/survey-analytics.types/analytics-localization/english.d.ts +0 -4
- package/survey-analytics.types/analytics-localization/farsi.d.ts +46 -0
- package/survey-analytics.types/analytics-localization/french.d.ts +22 -2
- package/survey-analytics.types/analytics-localization/italian.d.ts +1 -4
- package/survey-analytics.types/analytics-localization/norwegian.d.ts +27 -0
- package/survey-analytics.types/analytics-localization/portuguese.d.ts +0 -4
- package/survey-analytics.types/analytics-localization/russian.d.ts +32 -0
- package/survey-analytics.types/analytics-localization/spanish.d.ts +16 -1
- package/survey-analytics.types/histogram.d.ts +1 -1
- package/survey-analytics.types/localizationManager.d.ts +0 -4
- package/survey-analytics.types/matrix.d.ts +1 -1
- package/survey-analytics.types/matrixDropdownGrouped.d.ts +1 -1
- package/survey-analytics.types/number.d.ts +1 -1
- package/survey-analytics.types/plotly/histogram.d.ts +1 -1
- package/survey-analytics.types/plotly/ranking.d.ts +1 -1
- package/survey-analytics.types/plotly/selectBase.d.ts +1 -1
- package/survey-analytics.types/text.d.ts +1 -4
- package/survey-analytics.types/visualizationPanel.d.ts +1 -1
- package/survey-analytics.types/visualizerBase.d.ts +2 -2
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +1 -1
- package/survey.analytics.css +1 -1
- package/survey.analytics.datatables.css +1 -1
- package/survey.analytics.datatables.js +317 -60
- package/survey.analytics.datatables.min.css +1 -1
- package/survey.analytics.datatables.min.js +2 -2
- package/survey.analytics.js +430 -140
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +3 -3
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +317 -60
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +2 -2
|
@@ -4,17 +4,63 @@ export declare var farsiStrings: {
|
|
|
4
4
|
selectButton: string;
|
|
5
5
|
hideColumn: string;
|
|
6
6
|
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
7
9
|
moveToDetail: string;
|
|
8
10
|
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
9
15
|
visualizer_text: string;
|
|
10
16
|
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
11
21
|
chartType_bar: string;
|
|
22
|
+
chartType_vbar: string;
|
|
23
|
+
chartType_stackedbar: string;
|
|
24
|
+
chartType_doughnut: string;
|
|
12
25
|
chartType_pie: string;
|
|
13
26
|
chartType_scatter: string;
|
|
14
27
|
chartType_gauge: string;
|
|
15
28
|
chartType_bullet: string;
|
|
16
29
|
hideButton: string;
|
|
30
|
+
makePrivateButton: string;
|
|
31
|
+
makePublicButton: string;
|
|
32
|
+
showButton: string;
|
|
33
|
+
filter: string;
|
|
17
34
|
resetFilter: string;
|
|
35
|
+
changeLocale: string;
|
|
18
36
|
clearButton: string;
|
|
19
37
|
addElement: string;
|
|
38
|
+
defaultOrder: string;
|
|
39
|
+
ascOrder: string;
|
|
40
|
+
descOrder: string;
|
|
41
|
+
showMinorColumns: string;
|
|
42
|
+
otherCommentTitle: string;
|
|
43
|
+
showPercentages: string;
|
|
44
|
+
hidePercentages: string;
|
|
45
|
+
pdfDownloadCaption: string;
|
|
46
|
+
xlsxDownloadCaption: string;
|
|
47
|
+
csvDownloadCaption: string;
|
|
48
|
+
saveDiagramAsPNG: string;
|
|
49
|
+
hideEmptyAnswers: string;
|
|
50
|
+
showEmptyAnswers: string;
|
|
51
|
+
"topNValueText-1": string;
|
|
52
|
+
topNValueText5: string;
|
|
53
|
+
topNValueText10: string;
|
|
54
|
+
topNValueText20: string;
|
|
55
|
+
hideMissingAnswers: string;
|
|
56
|
+
showMissingAnswers: string;
|
|
57
|
+
missingAnswersLabel: string;
|
|
58
|
+
noVisualizerForQuestion: string;
|
|
59
|
+
noResults: string;
|
|
60
|
+
showPerValues: string;
|
|
61
|
+
showPerColumns: string;
|
|
62
|
+
answer: string;
|
|
63
|
+
correctAnswer: string;
|
|
64
|
+
percent: string;
|
|
65
|
+
responses: string;
|
|
20
66
|
};
|
|
@@ -14,20 +14,25 @@ export declare var frenchStrings: {
|
|
|
14
14
|
entriesLabel: string;
|
|
15
15
|
visualizer_text: string;
|
|
16
16
|
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
17
21
|
chartType_bar: string;
|
|
22
|
+
chartType_vbar: string;
|
|
18
23
|
chartType_stackedbar: string;
|
|
19
24
|
chartType_doughnut: string;
|
|
20
25
|
chartType_pie: string;
|
|
21
26
|
chartType_scatter: string;
|
|
22
27
|
chartType_gauge: string;
|
|
23
28
|
chartType_bullet: string;
|
|
24
|
-
filter: string;
|
|
25
29
|
hideButton: string;
|
|
26
|
-
saveDiagramAsPNG: string;
|
|
27
30
|
makePrivateButton: string;
|
|
28
31
|
makePublicButton: string;
|
|
29
32
|
showButton: string;
|
|
33
|
+
filter: string;
|
|
30
34
|
resetFilter: string;
|
|
35
|
+
changeLocale: string;
|
|
31
36
|
clearButton: string;
|
|
32
37
|
addElement: string;
|
|
33
38
|
defaultOrder: string;
|
|
@@ -35,6 +40,21 @@ export declare var frenchStrings: {
|
|
|
35
40
|
descOrder: string;
|
|
36
41
|
showMinorColumns: string;
|
|
37
42
|
otherCommentTitle: string;
|
|
43
|
+
showPercentages: string;
|
|
44
|
+
hidePercentages: string;
|
|
45
|
+
pdfDownloadCaption: string;
|
|
46
|
+
xlsxDownloadCaption: string;
|
|
47
|
+
csvDownloadCaption: string;
|
|
48
|
+
saveDiagramAsPNG: string;
|
|
49
|
+
hideEmptyAnswers: string;
|
|
50
|
+
showEmptyAnswers: string;
|
|
51
|
+
"topNValueText-1": string;
|
|
52
|
+
topNValueText5: string;
|
|
53
|
+
topNValueText10: string;
|
|
54
|
+
topNValueText20: string;
|
|
55
|
+
hideMissingAnswers: string;
|
|
56
|
+
showMissingAnswers: string;
|
|
57
|
+
missingAnswersLabel: string;
|
|
38
58
|
noVisualizerForQuestion: string;
|
|
39
59
|
noResults: string;
|
|
40
60
|
showPerValues: string;
|
|
@@ -33,10 +33,6 @@ export declare var italianStrings: {
|
|
|
33
33
|
filter: string;
|
|
34
34
|
resetFilter: string;
|
|
35
35
|
changeLocale: string;
|
|
36
|
-
en: string;
|
|
37
|
-
fr: string;
|
|
38
|
-
ru: string;
|
|
39
|
-
de: string;
|
|
40
36
|
clearButton: string;
|
|
41
37
|
addElement: string;
|
|
42
38
|
defaultOrder: string;
|
|
@@ -64,6 +60,7 @@ export declare var italianStrings: {
|
|
|
64
60
|
showPerValues: string;
|
|
65
61
|
showPerColumns: string;
|
|
66
62
|
answer: string;
|
|
63
|
+
correctAnswer: string;
|
|
67
64
|
percent: string;
|
|
68
65
|
responses: string;
|
|
69
66
|
};
|
|
@@ -14,7 +14,12 @@ export declare var norwegianStrings: {
|
|
|
14
14
|
entriesLabel: string;
|
|
15
15
|
visualizer_text: string;
|
|
16
16
|
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
17
21
|
chartType_bar: string;
|
|
22
|
+
chartType_vbar: string;
|
|
18
23
|
chartType_stackedbar: string;
|
|
19
24
|
chartType_doughnut: string;
|
|
20
25
|
chartType_pie: string;
|
|
@@ -25,6 +30,7 @@ export declare var norwegianStrings: {
|
|
|
25
30
|
makePrivateButton: string;
|
|
26
31
|
makePublicButton: string;
|
|
27
32
|
showButton: string;
|
|
33
|
+
filter: string;
|
|
28
34
|
resetFilter: string;
|
|
29
35
|
changeLocale: string;
|
|
30
36
|
clearButton: string;
|
|
@@ -36,4 +42,25 @@ export declare var norwegianStrings: {
|
|
|
36
42
|
otherCommentTitle: string;
|
|
37
43
|
showPercentages: string;
|
|
38
44
|
hidePercentages: string;
|
|
45
|
+
pdfDownloadCaption: string;
|
|
46
|
+
xlsxDownloadCaption: string;
|
|
47
|
+
csvDownloadCaption: string;
|
|
48
|
+
saveDiagramAsPNG: string;
|
|
49
|
+
hideEmptyAnswers: string;
|
|
50
|
+
showEmptyAnswers: string;
|
|
51
|
+
"topNValueText-1": string;
|
|
52
|
+
topNValueText5: string;
|
|
53
|
+
topNValueText10: string;
|
|
54
|
+
topNValueText20: string;
|
|
55
|
+
hideMissingAnswers: string;
|
|
56
|
+
showMissingAnswers: string;
|
|
57
|
+
missingAnswersLabel: string;
|
|
58
|
+
noVisualizerForQuestion: string;
|
|
59
|
+
noResults: string;
|
|
60
|
+
showPerValues: string;
|
|
61
|
+
showPerColumns: string;
|
|
62
|
+
answer: string;
|
|
63
|
+
correctAnswer: string;
|
|
64
|
+
percent: string;
|
|
65
|
+
responses: string;
|
|
39
66
|
};
|
|
@@ -11,6 +11,11 @@ export declare var russianStrings: {
|
|
|
11
11
|
showAsColumn: string;
|
|
12
12
|
visualizer_text: string;
|
|
13
13
|
visualizer_wordcloud: string;
|
|
14
|
+
visualizer_histogram: string;
|
|
15
|
+
visualizer_number: string;
|
|
16
|
+
visualizer_choices: string;
|
|
17
|
+
visualizer_selectBase: string;
|
|
18
|
+
chartType_vbar: string;
|
|
14
19
|
chartType_bar: string;
|
|
15
20
|
chartType_stackedbar: string;
|
|
16
21
|
chartType_doughnut: string;
|
|
@@ -31,4 +36,31 @@ export declare var russianStrings: {
|
|
|
31
36
|
otherCommentTitle: string;
|
|
32
37
|
noVisualizerForQuestion: string;
|
|
33
38
|
noResults: string;
|
|
39
|
+
filterPlaceholder: string;
|
|
40
|
+
removeRows: string;
|
|
41
|
+
showLabel: string;
|
|
42
|
+
entriesLabel: string;
|
|
43
|
+
makePrivateButton: string;
|
|
44
|
+
makePublicButton: string;
|
|
45
|
+
showPercentages: string;
|
|
46
|
+
hidePercentages: string;
|
|
47
|
+
pdfDownloadCaption: string;
|
|
48
|
+
xlsxDownloadCaption: string;
|
|
49
|
+
csvDownloadCaption: string;
|
|
50
|
+
saveDiagramAsPNG: string;
|
|
51
|
+
hideEmptyAnswers: string;
|
|
52
|
+
showEmptyAnswers: string;
|
|
53
|
+
"topNValueText-1": string;
|
|
54
|
+
topNValueText5: string;
|
|
55
|
+
topNValueText10: string;
|
|
56
|
+
topNValueText20: string;
|
|
57
|
+
hideMissingAnswers: string;
|
|
58
|
+
showMissingAnswers: string;
|
|
59
|
+
missingAnswersLabel: string;
|
|
60
|
+
showPerValues: string;
|
|
61
|
+
showPerColumns: string;
|
|
62
|
+
answer: string;
|
|
63
|
+
correctAnswer: string;
|
|
64
|
+
percent: string;
|
|
65
|
+
responses: string;
|
|
34
66
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare var spanishStrings: {
|
|
2
|
+
groupButton: string;
|
|
2
3
|
ungroupButton: string;
|
|
3
4
|
selectButton: string;
|
|
4
5
|
hideColumn: string;
|
|
@@ -10,10 +11,15 @@ export declare var spanishStrings: {
|
|
|
10
11
|
filterPlaceholder: string;
|
|
11
12
|
removeRows: string;
|
|
12
13
|
showLabel: string;
|
|
13
|
-
|
|
14
|
+
entriesLabel: string;
|
|
14
15
|
visualizer_text: string;
|
|
15
16
|
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
16
21
|
chartType_bar: string;
|
|
22
|
+
chartType_vbar: string;
|
|
17
23
|
chartType_stackedbar: string;
|
|
18
24
|
chartType_doughnut: string;
|
|
19
25
|
chartType_pie: string;
|
|
@@ -46,6 +52,15 @@ export declare var spanishStrings: {
|
|
|
46
52
|
topNValueText5: string;
|
|
47
53
|
topNValueText10: string;
|
|
48
54
|
topNValueText20: string;
|
|
55
|
+
hideMissingAnswers: string;
|
|
56
|
+
showMissingAnswers: string;
|
|
57
|
+
missingAnswersLabel: string;
|
|
49
58
|
noVisualizerForQuestion: string;
|
|
50
59
|
noResults: string;
|
|
60
|
+
showPerValues: string;
|
|
61
|
+
showPerColumns: string;
|
|
62
|
+
answer: string;
|
|
63
|
+
correctAnswer: string;
|
|
64
|
+
percent: string;
|
|
65
|
+
responses: string;
|
|
51
66
|
};
|
|
@@ -21,5 +21,5 @@ export declare class NumberModel extends VisualizerBase {
|
|
|
21
21
|
generateText(maxValue: number, minValue: number, stepsCount: number): any;
|
|
22
22
|
generateValues(maxValue: number, stepsCount: number): any[];
|
|
23
23
|
generateColors(maxValue: number, minValue: number, stepsCount: number): any[];
|
|
24
|
-
|
|
24
|
+
getCalculatedValues(): any;
|
|
25
25
|
}
|
|
@@ -8,6 +8,6 @@ export declare class HistogramPlotly extends HistogramModel {
|
|
|
8
8
|
}>, options?: Object, name?: string);
|
|
9
9
|
protected destroyContent(container: HTMLElement): void;
|
|
10
10
|
protected renderContent(container: HTMLElement): void;
|
|
11
|
-
|
|
11
|
+
getCalculatedValues(): any[];
|
|
12
12
|
getValueType(): "date" | "number";
|
|
13
13
|
}
|
|
@@ -2,6 +2,6 @@ import { SelectBasePlotly } from "./selectBase";
|
|
|
2
2
|
export declare class RankingPlotly extends SelectBasePlotly {
|
|
3
3
|
getQuestionResults(): any[];
|
|
4
4
|
getEmptyData(): any;
|
|
5
|
-
|
|
5
|
+
getCalculatedValues(): any[];
|
|
6
6
|
applyResultToPlotlyData(result: any[], plotlyData: any, choices: any): void;
|
|
7
7
|
}
|
|
@@ -11,10 +11,7 @@ export declare class Text extends VisualizerBase {
|
|
|
11
11
|
constructor(question: Question, data: Array<{
|
|
12
12
|
[index: string]: any;
|
|
13
13
|
}>, options?: Object, name?: string);
|
|
14
|
-
|
|
15
|
-
columnsCount: number;
|
|
16
|
-
data: string[][];
|
|
17
|
-
};
|
|
14
|
+
getCalculatedValues(): any;
|
|
18
15
|
protected destroyContent(container: HTMLElement): void;
|
|
19
16
|
protected renderContent(container: HTMLElement): void;
|
|
20
17
|
destroy(): void;
|
|
@@ -235,7 +235,7 @@ export interface IVisualizationPanelOptions {
|
|
|
235
235
|
* Survey questions to visualize. Call `SurveyModel`'s [`getAllQuestions()`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#getQuestionByName) method to access all survey questions and pass its result as the `questions` parameter.
|
|
236
236
|
* - `data`: `Array<any>`\
|
|
237
237
|
* Survey results.
|
|
238
|
-
* - `
|
|
238
|
+
* - `vizPanelOptions`: [`IVisualizationPanelOptions`](https://surveyjs.io/dashboard/documentation/api-reference/ivisualizationpaneloptions)\
|
|
239
239
|
* Visualization Panel configuration.
|
|
240
240
|
*
|
|
241
241
|
* [View Demo](https://surveyjs.io/dashboard/examples/interactive-survey-data-dashboard/ (linkStyle))
|
|
@@ -105,7 +105,7 @@ export declare class VisualizerBase implements IDataInfo {
|
|
|
105
105
|
*/
|
|
106
106
|
get footerVisualizer(): VisualizerBase;
|
|
107
107
|
/**
|
|
108
|
-
* Indicates whether users can select series points to cross-filter charts. To allow or disallow selection, set the `allowSelection` property of the `
|
|
108
|
+
* Indicates whether users can select series points to cross-filter charts. To allow or disallow selection, set the [`allowSelection`](https://surveyjs.io/dashboard/documentation/api-reference/ivisualizationpaneloptions#allowSelection) property of the `IVisualizationPanelOptions` object in the [`VisualizationPanel`](https://surveyjs.io/dashboard/documentation/api-reference/visualizationpanel) constructor.
|
|
109
109
|
*/
|
|
110
110
|
get supportSelection(): boolean;
|
|
111
111
|
getSeriesValues(): Array<string>;
|
|
@@ -268,7 +268,7 @@ export declare class VisualizerBase implements IDataInfo {
|
|
|
268
268
|
/**
|
|
269
269
|
* Gets or sets the current locale.
|
|
270
270
|
*
|
|
271
|
-
* If you want to inherit the locale from a visualized survey, assign a `SurveyModel` instance to the `survey` property of the `
|
|
271
|
+
* If you want to inherit the locale from a visualized survey, assign a [`SurveyModel`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model) instance to the [`survey`](https://surveyjs.io/dashboard/documentation/api-reference/ivisualizationpaneloptions#survey) property of the `IVisualizationPanelOptions` object in the [`VisualizationPanel`](https://surveyjs.io/dashboard/documentation/api-reference/visualizationpanel) constructor.
|
|
272
272
|
*
|
|
273
273
|
* If the survey is [translated into more than one language](https://surveyjs.io/form-library/examples/survey-localization/), the toolbar displays a language selection drop-down menu.
|
|
274
274
|
* @see onLocaleChanged
|
|
@@ -19,7 +19,7 @@ export declare class WordCloud extends VisualizerBase {
|
|
|
19
19
|
constructor(question: Question, data: Array<{
|
|
20
20
|
[index: string]: any;
|
|
21
21
|
}>, options?: Object, name?: string);
|
|
22
|
-
|
|
22
|
+
getCalculatedValues(): any;
|
|
23
23
|
protected destroyContent(container: HTMLElement): void;
|
|
24
24
|
protected renderContent(container: HTMLElement): void;
|
|
25
25
|
destroy(): void;
|
package/survey.analytics.css
CHANGED