survey-analytics 2.5.16 → 3.0.0-beta.1
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/fesm/shared.mjs +759 -3180
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +10561 -8296
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/shared3.mjs +4844 -0
- package/fesm/shared3.mjs.map +1 -0
- package/fesm/shared4.mjs +42 -0
- package/fesm/shared4.mjs.map +1 -0
- package/fesm/survey.analytics.apexcharts.mjs +1082 -0
- package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
- package/fesm/survey.analytics.core.mjs +3 -3
- package/fesm/survey.analytics.mjs +7 -755
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.plotly.mjs +13 -0
- package/fesm/survey.analytics.plotly.mjs.map +1 -0
- package/fesm/survey.analytics.tabulator.mjs +341 -193
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/fesm/themes/index.mjs +1942 -0
- package/fesm/themes/index.mjs.map +1 -0
- package/package.json +39 -10
- package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
- package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/english.d.ts +142 -0
- package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
- package/survey-analytics-plotly.types/axisDescription.d.ts +6 -0
- package/survey-analytics-plotly.types/boolean.d.ts +15 -0
- package/survey-analytics-plotly.types/card.d.ts +29 -0
- package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
- package/survey-analytics-plotly.types/config.d.ts +35 -0
- package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
- package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
- package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
- package/survey-analytics-plotly.types/entries/summary.core.d.ts +46 -0
- package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
- package/survey-analytics-plotly.types/histogram.d.ts +102 -0
- package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
- package/survey-analytics-plotly.types/localizationManager.d.ts +164 -0
- package/survey-analytics-plotly.types/matrix.d.ts +17 -0
- package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
- package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics-plotly.types/nps.d.ts +37 -0
- package/survey-analytics-plotly.types/number.d.ts +27 -0
- package/survey-analytics-plotly.types/pivot.d.ts +71 -0
- package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
- package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
- package/survey-analytics-plotly.types/ranking.d.ts +12 -0
- package/survey-analytics-plotly.types/selectBase.d.ts +117 -0
- package/survey-analytics-plotly.types/sideBarItemCreators.d.ts +7 -0
- package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
- package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
- package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
- package/survey-analytics-plotly.types/text.d.ts +25 -0
- package/survey-analytics-plotly.types/theme.d.ts +51 -0
- package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics-plotly.types/utils/documentHelper.d.ts +28 -0
- package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +34 -0
- package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +48 -0
- package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +46 -0
- package/survey-analytics-plotly.types/utils/editableSeriesListWidget.d.ts +34 -0
- package/survey-analytics-plotly.types/utils/elementVisibilityAction.d.ts +22 -0
- package/survey-analytics-plotly.types/utils/index.d.ts +25 -0
- package/survey-analytics-plotly.types/utils/sidebarWidget.d.ts +48 -0
- package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
- package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
- package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationManager.d.ts +61 -0
- package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
- package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
- package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
- package/survey-analytics-plotly.types/visualizer-interfaces.d.ts +25 -0
- package/survey-analytics-plotly.types/visualizerBase.d.ts +435 -0
- package/survey-analytics-plotly.types/visualizerDescription.d.ts +4 -0
- package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
- package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +40 -0
- package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
- package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +40 -0
- package/survey-analytics-tabulator.types/tables/columnbuilder.d.ts +16 -16
- package/survey-analytics-tabulator.types/tables/columns.d.ts +18 -18
- package/survey-analytics-tabulator.types/tables/config.d.ts +2 -2
- package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
- package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
- package/survey-analytics-tabulator.types/tables/table-interfaces.d.ts +56 -0
- package/survey-analytics-tabulator.types/tables/table.d.ts +4 -48
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +9 -1
- package/survey-analytics-tabulator.types/theme.d.ts +51 -0
- package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-tabulator.types/utils/documentHelper.d.ts +28 -0
- package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +34 -0
- package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +48 -0
- package/survey-analytics-tabulator.types/utils/index.d.ts +1 -15
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
- package/survey-analytics.types/analytics-localization/english.d.ts +40 -0
- package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
- package/survey-analytics.types/apexcharts/index.d.ts +2 -0
- package/survey-analytics.types/apexcharts/setup.d.ts +200 -0
- package/survey-analytics.types/axisDescription.d.ts +6 -0
- package/survey-analytics.types/boolean.d.ts +1 -1
- package/survey-analytics.types/card.d.ts +29 -0
- package/survey-analytics.types/chartConfig.d.ts +9 -0
- package/survey-analytics.types/config.d.ts +1 -33
- package/survey-analytics.types/dashboard.d.ts +51 -0
- package/survey-analytics.types/dataProvider.d.ts +17 -0
- package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
- package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
- package/survey-analytics.types/entries/summary.core.d.ts +9 -1
- package/survey-analytics.types/histogram.d.ts +29 -13
- package/survey-analytics.types/layout-engine.d.ts +29 -0
- package/survey-analytics.types/localizationManager.d.ts +40 -0
- package/survey-analytics.types/matrix.d.ts +3 -2
- package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
- package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics.types/nps.d.ts +5 -10
- package/survey-analytics.types/number.d.ts +8 -7
- package/survey-analytics.types/pivot.d.ts +42 -40
- package/survey-analytics.types/ranking.d.ts +3 -2
- package/survey-analytics.types/selectBase.d.ts +13 -15
- package/survey-analytics.types/sideBarItemCreators.d.ts +7 -0
- package/survey-analytics.types/statisticCalculators.d.ts +8 -13
- package/survey-analytics.types/statistics-table.d.ts +2 -2
- package/survey-analytics.types/text.d.ts +4 -3
- package/survey-analytics.types/theme.d.ts +51 -0
- package/survey-analytics.types/themes/default-light.d.ts +965 -0
- package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics.types/utils/documentHelper.d.ts +28 -0
- package/survey-analytics.types/utils/dropdownActionWidget.d.ts +34 -0
- package/survey-analytics.types/utils/dropdownBase.d.ts +48 -0
- package/survey-analytics.types/utils/dropdownWidget.d.ts +46 -0
- package/survey-analytics.types/utils/editableSeriesListWidget.d.ts +34 -0
- package/survey-analytics.types/utils/elementVisibilityAction.d.ts +22 -0
- package/survey-analytics.types/utils/index.d.ts +1 -15
- package/survey-analytics.types/utils/sidebarWidget.d.ts +48 -0
- package/survey-analytics.types/utils/toggle.d.ts +17 -0
- package/survey-analytics.types/utils/utils.d.ts +9 -0
- package/survey-analytics.types/visualizationComposite.d.ts +1 -1
- package/survey-analytics.types/visualizationManager.d.ts +6 -5
- package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
- package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
- package/survey-analytics.types/visualizationPanel.d.ts +20 -3
- package/survey-analytics.types/visualizationPanelDynamic.d.ts +4 -3
- package/survey-analytics.types/visualizer-interfaces.d.ts +25 -0
- package/survey-analytics.types/visualizerBase.d.ts +80 -12
- package/survey-analytics.types/visualizerDescription.d.ts +4 -0
- package/survey-analytics.types/visualizerFactory.d.ts +11 -2
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
- package/survey.analytics.core.css +1534 -122
- package/survey.analytics.core.css.map +1 -1
- package/survey.analytics.core.d.ts +1 -0
- package/survey.analytics.core.js +6118 -1229
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +11 -6
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +1900 -129
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.d.ts +2 -2
- package/survey.analytics.fontless.css +2009 -0
- package/survey.analytics.fontless.css.map +1 -0
- package/survey.analytics.fontless.min.css +16 -0
- package/survey.analytics.js +9764 -4539
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +13 -6
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.mongo.d.ts +1 -0
- package/survey.analytics.mongo.js +2 -2
- package/survey.analytics.mongo.js.map +1 -1
- package/survey.analytics.mongo.min.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.plotly.css +2094 -0
- package/survey.analytics.plotly.css.map +1 -0
- package/survey.analytics.plotly.d.ts +2 -0
- package/survey.analytics.plotly.fontless.css +1872 -0
- package/survey.analytics.plotly.fontless.css.map +1 -0
- package/survey.analytics.plotly.fontless.min.css +15 -0
- package/survey.analytics.plotly.js +24673 -0
- package/survey.analytics.plotly.js.map +1 -0
- package/survey.analytics.plotly.min.css +16 -0
- package/survey.analytics.plotly.min.js +2 -0
- package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
- package/survey.analytics.tabulator.css +1005 -132
- package/survey.analytics.tabulator.css.map +1 -1
- package/survey.analytics.tabulator.d.ts +1 -0
- package/survey.analytics.tabulator.fontless.css +1134 -0
- package/survey.analytics.tabulator.fontless.css.map +1 -0
- package/survey.analytics.tabulator.fontless.min.css +6 -0
- package/survey.analytics.tabulator.js +2719 -476
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +3 -2
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/themes/default-dark.js +1032 -0
- package/themes/default-dark.js.map +1 -0
- package/themes/default-dark.min.js +2 -0
- package/themes/default-dark.min.js.LICENSE.txt +5 -0
- package/themes/default-light.js +1032 -0
- package/themes/default-light.js.map +1 -0
- package/themes/default-light.min.js +2 -0
- package/themes/default-light.min.js.LICENSE.txt +5 -0
- package/themes/index.js +2063 -0
- package/themes/index.js.map +1 -0
- package/themes/index.min.js +2 -0
- package/themes/index.min.js.LICENSE.txt +5 -0
- package/themes/themes/default-dark.d.ts +965 -0
- package/themes/themes/default-light.d.ts +965 -0
- package/themes/themes/index.d.ts +1934 -0
- package/themes/utils/helpers.d.ts +8 -0
- package/survey-analytics.types/plotly/setup.d.ts +0 -32
- /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
package/fesm/shared.mjs
CHANGED
|
@@ -1,3225 +1,804 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v3.0.0-beta.1
|
|
3
3
|
* Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { h as NumberModel, S as SelectBase, B as BooleanModel, H as HistogramModel, M as Matrix, d as MatrixDropdownGrouped, P as PivotModel, R as RankingModel, s as VisualizerBase, _ as __awaiter } from './shared2.mjs';
|
|
8
|
+
import { Event, getRGBaColor, ItemValue } from 'survey-core';
|
|
9
|
+
import { l as localization, d as DataHelper, D as DashboardTheme } from './shared3.mjs';
|
|
10
|
+
import Plotly from 'plotly.js-dist-min';
|
|
11
|
+
import { i as isAllZeros, r as reverseAll } from './shared4.mjs';
|
|
8
12
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
showColumn: "Show column",
|
|
17
|
-
makePrivateColumn: "Make column private",
|
|
18
|
-
makePublicColumn: "Make column public",
|
|
19
|
-
moveToDetail: "Move to Detail",
|
|
20
|
-
showAsColumn: "Show as Column",
|
|
21
|
-
filterPlaceholder: "Search...",
|
|
22
|
-
removeRows: "Remove rows",
|
|
23
|
-
showLabel: "Show",
|
|
24
|
-
entriesLabel: "entries",
|
|
25
|
-
visualizer_text: "Texts in table",
|
|
26
|
-
visualizer_wordcloud: "Wordcloud",
|
|
27
|
-
visualizer_histogram: "Histogram",
|
|
28
|
-
visualizer_number: "Average",
|
|
29
|
-
visualizer_choices: "Table",
|
|
30
|
-
visualizer_selectBase: "Chart",
|
|
31
|
-
visualizer_matrix: "Chart",
|
|
32
|
-
chartType_bar: "Bar",
|
|
33
|
-
chartType_vbar: "Vertical Bar",
|
|
34
|
-
chartType_stackedbar: "Stacked Bar",
|
|
35
|
-
chartType_doughnut: "Doughnut",
|
|
36
|
-
chartType_pie: "Pie",
|
|
37
|
-
chartType_scatter: "Scatter",
|
|
38
|
-
chartType_gauge: "Gauge",
|
|
39
|
-
chartType_bullet: "Bullet",
|
|
40
|
-
chartType_line: "Line",
|
|
41
|
-
chartType_radar: "Radar",
|
|
42
|
-
hideButton: "Hide",
|
|
43
|
-
makePrivateButton: "Make private",
|
|
44
|
-
makePublicButton: "Make public",
|
|
45
|
-
showButton: "Show",
|
|
46
|
-
filter: "Filter",
|
|
47
|
-
resetFilter: "Reset Filter",
|
|
48
|
-
changeLocale: "Change Locale",
|
|
49
|
-
clearButton: "Clear",
|
|
50
|
-
addElement: "Choose question to show...",
|
|
51
|
-
defaultOrder: "Default Order",
|
|
52
|
-
ascOrder: "Ascending",
|
|
53
|
-
descOrder: "Descending",
|
|
54
|
-
showMinorColumns: "Show minor columns",
|
|
55
|
-
actionsColumn: "Actions",
|
|
56
|
-
otherCommentTitle: "Other items and comments",
|
|
57
|
-
showPercentages: "Show percentages",
|
|
58
|
-
hidePercentages: "Hide percentages",
|
|
59
|
-
pdfDownloadCaption: "PDF",
|
|
60
|
-
xlsxDownloadCaption: "Excel",
|
|
61
|
-
csvDownloadCaption: "CSV",
|
|
62
|
-
saveDiagramAsPNG: "Download plot as a PNG file",
|
|
63
|
-
hideEmptyAnswers: "Hide empty answers",
|
|
64
|
-
showEmptyAnswers: "Show empty answers",
|
|
65
|
-
"topNValueText-1": "All answers",
|
|
66
|
-
"topNValueText5": "Top 5 answers",
|
|
67
|
-
"topNValueText10": "Top 10 answers",
|
|
68
|
-
"topNValueText20": "Top 20 answers",
|
|
69
|
-
hideMissingAnswers: "Hide missing answers",
|
|
70
|
-
showMissingAnswers: "Show missing answers",
|
|
71
|
-
missingAnswersLabel: "Missing answers",
|
|
72
|
-
noVisualizerForQuestion: "This question type is not visualized yet",
|
|
73
|
-
noResults: "There are no results yet",
|
|
74
|
-
showPerValues: "Per Values",
|
|
75
|
-
showPerColumns: "Per Columns",
|
|
76
|
-
answer: "Answer",
|
|
77
|
-
correctAnswer: "Correct answer: ",
|
|
78
|
-
percent: "Percent",
|
|
79
|
-
percentage: "Percentage",
|
|
80
|
-
statistics_chart: "Chart",
|
|
81
|
-
responses: "Responses",
|
|
82
|
-
visualizer_nps: "NPS",
|
|
83
|
-
visualizer_boolean: "Chart",
|
|
84
|
-
visualizer_options: "Table",
|
|
85
|
-
npsScore: "NPS",
|
|
86
|
-
npsPromoters: "Promoters",
|
|
87
|
-
npsPassives: "Passives",
|
|
88
|
-
npsDetractors: "Detractors",
|
|
89
|
-
axisXSelectorTitle: "Category (X Axis):",
|
|
90
|
-
axisYSelectorTitle: "Legend (Series):",
|
|
91
|
-
axisXAlternativeSelectorTitle: "Segments:",
|
|
92
|
-
axisYAlternativeSelectorTitle: "Groups:",
|
|
93
|
-
notSelected: "Not selected",
|
|
94
|
-
intervalMode_default: "Default",
|
|
95
|
-
intervalMode_decades: "Decades",
|
|
96
|
-
intervalMode_years: "Years",
|
|
97
|
-
intervalMode_quarters: "Quarters",
|
|
98
|
-
intervalMode_months: "Months",
|
|
99
|
-
intervalMode_days: "Days",
|
|
100
|
-
intervalMode_custom: "Custom",
|
|
101
|
-
intervalMode_auto: "Auto",
|
|
102
|
-
intervalModeTitle: "Intervals:",
|
|
103
|
-
noRunningTotals: "Show individual values",
|
|
104
|
-
runningTotals: "Show running totals",
|
|
105
|
-
groupDateSeries: "Compare periods",
|
|
106
|
-
ungroupDateSeries: "View timeline",
|
|
107
|
-
noneAggregateText: "None",
|
|
108
|
-
selectAggregateText: "Aggregate:",
|
|
109
|
-
groupedYearsAxisTitle: "Year ends with",
|
|
110
|
-
license: "To use the Dashboard library in your application, a <a href='https://surveyjs.io/licensing' target='_blank'>developer license</a> is required. If you have an active license, please <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up your license key</a> and ensure you're using the <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>latest version</a>.",
|
|
111
|
-
license2: "This banner appears because your maintenance subscription for the Dashboard library expired on {date}. You may continue using <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>all versions released up to that date</a>. To remove this banner in the latest version, please <a href='https://surveyjs.io/manage#license-manager' target='_blank'>renew your subscription</a> and <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up a new license key</a>."
|
|
112
|
-
};
|
|
113
|
-
// Uncomment the line below if you create a custom dictionary.
|
|
114
|
-
// Replace "en" with a custom locale code (for example, "fr" or "de"),
|
|
115
|
-
// Replace `englishStrings` with the name of the variable that contains the custom dictionary.
|
|
116
|
-
// setupLocale({ localeCode: "en", strings: englishStrings });
|
|
117
|
-
|
|
118
|
-
var localization = {
|
|
119
|
-
currentLocaleValue: "",
|
|
120
|
-
defaultLocaleValue: "en",
|
|
121
|
-
locales: {},
|
|
122
|
-
localeNames: {},
|
|
123
|
-
supportedLocales: [],
|
|
124
|
-
get currentLocale() {
|
|
125
|
-
return this.currentLocaleValue === this.defaultLocaleValue
|
|
126
|
-
? ""
|
|
127
|
-
: this.currentLocaleValue;
|
|
128
|
-
},
|
|
129
|
-
set currentLocale(val) {
|
|
130
|
-
this.currentLocaleValue = val;
|
|
131
|
-
},
|
|
132
|
-
get defaultLocale() {
|
|
133
|
-
return this.defaultLocaleValue;
|
|
134
|
-
},
|
|
135
|
-
set defaultLocale(val) {
|
|
136
|
-
this.defaultLocaleValue = val;
|
|
137
|
-
},
|
|
138
|
-
setupLocale: function (loc, strings) {
|
|
139
|
-
this.locales[loc] = strings;
|
|
140
|
-
},
|
|
141
|
-
getLocaleName: function (loc, inEnglish = false) {
|
|
142
|
-
const res = !inEnglish ? this.localeNames[loc] : "";
|
|
143
|
-
return res || surveyLocalization.getLocaleName(loc, inEnglish);
|
|
144
|
-
},
|
|
145
|
-
getString: function (strName) {
|
|
146
|
-
var loc = this.currentLocale
|
|
147
|
-
? this.locales[this.currentLocale]
|
|
148
|
-
: this.locales[this.defaultLocale];
|
|
149
|
-
if (!loc || !loc[strName])
|
|
150
|
-
loc = this.locales[this.defaultLocale];
|
|
151
|
-
var result = loc[strName];
|
|
152
|
-
if (result === undefined) {
|
|
153
|
-
result = this.locales["en"][strName] || strName;
|
|
154
|
-
}
|
|
155
|
-
return result;
|
|
156
|
-
},
|
|
157
|
-
getLocales: function () {
|
|
158
|
-
var res = [];
|
|
159
|
-
res.push("");
|
|
160
|
-
if (this.supportedLocales && this.supportedLocales.length > 0) {
|
|
161
|
-
for (var i = 0; i < this.supportedLocales.length; i++) {
|
|
162
|
-
res.push(this.supportedLocales[i]);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
else {
|
|
166
|
-
for (var key in this.locales) {
|
|
167
|
-
res.push(key);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
res.sort();
|
|
171
|
-
return res;
|
|
13
|
+
class PlotlySetup {
|
|
14
|
+
static defaultModebarConfig(theme) {
|
|
15
|
+
return {
|
|
16
|
+
bgcolor: "transparent",
|
|
17
|
+
activecolor: getRGBaColor(theme.modebarActiveColor),
|
|
18
|
+
color: getRGBaColor(theme.modebarColor),
|
|
19
|
+
};
|
|
172
20
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
localization.localeNames[loc] = localeConfig.nativeName;
|
|
21
|
+
static defaultTooltipConfig(theme) {
|
|
22
|
+
const font = Object.assign(Object.assign({}, theme.tooltipFont), { size: parseFloat(theme.tooltipFont.size) });
|
|
23
|
+
return {
|
|
24
|
+
bgcolor: getRGBaColor(theme.tooltipBackground),
|
|
25
|
+
font: font,
|
|
26
|
+
};
|
|
180
27
|
}
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
select.className = "sa-question__select";
|
|
191
|
-
const updateTitle = () => {
|
|
192
|
-
const titleText = !!title && (typeof title == "string" ? title : title());
|
|
193
|
-
titleElement.innerText = titleText;
|
|
194
|
-
if (!!titleText) {
|
|
195
|
-
selectWrapper.insertBefore(titleElement, select);
|
|
196
|
-
}
|
|
197
|
-
else if (titleElement.parentElement === selectWrapper) {
|
|
198
|
-
selectWrapper.removeChild(titleElement);
|
|
199
|
-
}
|
|
28
|
+
static defaultLegendConfig(model) {
|
|
29
|
+
const isMobile = window.innerWidth <= 600;
|
|
30
|
+
const legendSetting = model.theme.legendSetting;
|
|
31
|
+
const legendLabelFont = Object.assign(Object.assign({}, model.theme.legendLabelFont), { size: parseFloat(model.theme.legendLabelFont.size) });
|
|
32
|
+
const positions = {
|
|
33
|
+
"left": { x: -0.15, y: 1, xanchor: "right", yanchor: "top", orientation: "v", },
|
|
34
|
+
"right": { x: 1, y: 1, xanchor: "left", yanchor: "top", orientation: "v", },
|
|
35
|
+
"top": { x: 0.5, y: 1, xanchor: "right", yanchor: "bottom", orientation: "h", },
|
|
36
|
+
"bottom": { x: 0.5, y: -0.1, xanchor: "right", yanchor: "top", orientation: "h", }
|
|
200
37
|
};
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
});
|
|
213
|
-
select.appendChild(optionElement);
|
|
214
|
-
});
|
|
38
|
+
const legendPosition = positions[model.legendPosition] || positions["right"];
|
|
39
|
+
return {
|
|
40
|
+
orientation: isMobile ? "h" : legendPosition.orientation,
|
|
41
|
+
xanchor: isMobile ? "auto" : legendPosition.xanchor,
|
|
42
|
+
yanchor: isMobile ? "top" : legendPosition.yanchor,
|
|
43
|
+
x: legendPosition.x,
|
|
44
|
+
y: legendPosition.y,
|
|
45
|
+
bordercolor: legendSetting.borderColor,
|
|
46
|
+
borderwidth: legendSetting.borderWidth,
|
|
47
|
+
itemwidth: 20,
|
|
48
|
+
font: legendLabelFont
|
|
215
49
|
};
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
50
|
+
}
|
|
51
|
+
static defaultAxisConfig(theme) {
|
|
52
|
+
const axisLabelFont = Object.assign(Object.assign({}, theme.axisLabelFont), { size: parseFloat(theme.axisLabelFont.size) });
|
|
53
|
+
if (axisLabelFont.size === undefined || isNaN(axisLabelFont.size)) {
|
|
54
|
+
delete axisLabelFont.size;
|
|
55
|
+
}
|
|
56
|
+
if (!theme.isAxisLabelFontLoaded()) {
|
|
57
|
+
delete axisLabelFont.family;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
zerolinecolor: getRGBaColor(theme.axisGridColor),
|
|
61
|
+
automargin: true,
|
|
62
|
+
tickfont: axisLabelFont
|
|
219
63
|
};
|
|
220
|
-
selectWrapper["__updateSelect"]();
|
|
221
|
-
return selectWrapper;
|
|
222
64
|
}
|
|
223
|
-
static
|
|
224
|
-
const
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
return
|
|
65
|
+
static defaultInsideLabelFont(theme) {
|
|
66
|
+
const insideLabelFont = Object.assign(Object.assign({}, theme.insideLabelFont), { size: parseFloat(theme.insideLabelFont.size) });
|
|
67
|
+
return insideLabelFont;
|
|
68
|
+
}
|
|
69
|
+
static defaultAxisXConfig(theme) {
|
|
70
|
+
return Object.assign(Object.assign({}, PlotlySetup.defaultAxisConfig(theme)), { ticklabelstandoff: 8 });
|
|
229
71
|
}
|
|
230
|
-
static
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
72
|
+
static defaultAxisXWithGridLineConfig(theme) {
|
|
73
|
+
return Object.assign(Object.assign({}, PlotlySetup.defaultAxisXConfig(theme)), { gridcolor: getRGBaColor(theme.axisGridColor), griddash: "dot" });
|
|
74
|
+
}
|
|
75
|
+
static defaultAxisYConfig(theme) {
|
|
76
|
+
return Object.assign(Object.assign({}, PlotlySetup.defaultAxisConfig(theme)), { ticklabelstandoff: 16 });
|
|
77
|
+
}
|
|
78
|
+
static defaultAxisYWithGridLineConfig(theme) {
|
|
79
|
+
return Object.assign(Object.assign({}, PlotlySetup.defaultAxisYConfig(theme)), { gridcolor: getRGBaColor(theme.axisGridColor), griddash: "dot" });
|
|
80
|
+
}
|
|
81
|
+
static defaultAxisTitleFont(theme) {
|
|
82
|
+
const font = theme.axisTitleFont;
|
|
83
|
+
const result = {
|
|
84
|
+
size: parseFloat(font.size),
|
|
85
|
+
color: font.color,
|
|
86
|
+
};
|
|
87
|
+
if (theme.isAxisLabelFontLoaded && theme.isAxisLabelFontLoaded()) {
|
|
88
|
+
result.family = font.family;
|
|
234
89
|
}
|
|
235
|
-
if (
|
|
236
|
-
|
|
237
|
-
el[key] = attrs[key];
|
|
238
|
-
});
|
|
90
|
+
if (font.weight != null) {
|
|
91
|
+
result.weight = font.weight;
|
|
239
92
|
}
|
|
240
|
-
return
|
|
93
|
+
return result;
|
|
94
|
+
}
|
|
95
|
+
static defaultGaugeConfig(theme) {
|
|
96
|
+
return {
|
|
97
|
+
bgcolor: getRGBaColor(theme.gaugeBackground),
|
|
98
|
+
bordercolor: getRGBaColor(theme.gaugeBackground),
|
|
99
|
+
bar: {
|
|
100
|
+
color: getRGBaColor(theme.gaugeBarColor),
|
|
101
|
+
thickness: 0.5,
|
|
102
|
+
},
|
|
103
|
+
};
|
|
241
104
|
}
|
|
242
|
-
static
|
|
243
|
-
const
|
|
244
|
-
|
|
245
|
-
useElem.setAttributeNS("http://www.w3.org/1999/xlink", "href", "#sa-svg-" + path);
|
|
246
|
-
svgElem.appendChild(useElem);
|
|
247
|
-
return svgElem;
|
|
105
|
+
static defaultValueGaugeFont(theme) {
|
|
106
|
+
const font = Object.assign(Object.assign({}, theme.gaugeValueFont), { size: parseFloat(theme.gaugeValueFont.size) });
|
|
107
|
+
return font;
|
|
248
108
|
}
|
|
249
|
-
static
|
|
250
|
-
const
|
|
251
|
-
|
|
252
|
-
return btn;
|
|
109
|
+
static defaultGaugeTickFont(theme) {
|
|
110
|
+
const font = Object.assign(Object.assign({}, theme.gaugeTickFont), { size: parseFloat(theme.gaugeTickFont.size) });
|
|
111
|
+
return font;
|
|
253
112
|
}
|
|
254
|
-
static
|
|
255
|
-
const
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
113
|
+
static noDataAnnotations(theme) {
|
|
114
|
+
const font = Object.assign(Object.assign({}, theme.noDataFont), { size: parseFloat(theme.noDataFont.size) });
|
|
115
|
+
return [{
|
|
116
|
+
text: localization.getString("noData"),
|
|
117
|
+
x: 0.5,
|
|
118
|
+
y: 0.5,
|
|
119
|
+
xref: "paper",
|
|
120
|
+
yref: "paper",
|
|
121
|
+
showarrow: false,
|
|
122
|
+
font: {
|
|
123
|
+
size: font.size,
|
|
124
|
+
color: font.color,
|
|
125
|
+
fontFamily: font.family,
|
|
126
|
+
weight: font.weight
|
|
127
|
+
}
|
|
128
|
+
}];
|
|
129
|
+
}
|
|
130
|
+
static setup(charType, model, answersData) {
|
|
131
|
+
return this.setups[charType](model, answersData);
|
|
132
|
+
}
|
|
133
|
+
static setupPie(model, answersData) {
|
|
134
|
+
let { datasets, labels, colors, texts, seriesLabels, } = answersData;
|
|
135
|
+
const hasSeries = seriesLabels.length > 1 || model.dataType === "matrix";
|
|
136
|
+
const layoutColumns = 2;
|
|
137
|
+
let traces = [];
|
|
138
|
+
const traceConfig = {
|
|
139
|
+
type: model.chartType,
|
|
140
|
+
sort: false,
|
|
141
|
+
labels: labels,
|
|
142
|
+
customdata: labels,
|
|
143
|
+
text: labels.map((label) => {
|
|
144
|
+
return PlotlySetup.getTruncatedLabel(label, model.labelTruncateLength);
|
|
145
|
+
}),
|
|
146
|
+
hoverinfo: "value+text",
|
|
147
|
+
textposition: "inside",
|
|
148
|
+
texttemplate: "%{text}",
|
|
149
|
+
insidetextfont: PlotlySetup.defaultInsideLabelFont(model.theme),
|
|
150
|
+
hoverlabel: PlotlySetup.defaultTooltipConfig(model.theme),
|
|
151
|
+
};
|
|
152
|
+
if (model.chartType === "doughnut") {
|
|
153
|
+
traceConfig.type = "pie";
|
|
154
|
+
traceConfig.hole = 0.4;
|
|
155
|
+
}
|
|
156
|
+
if (!hasSeries) {
|
|
157
|
+
traceConfig.mode = "markers";
|
|
158
|
+
traceConfig.marker = { color: colors };
|
|
159
|
+
traceConfig.marker.symbol = "circle";
|
|
160
|
+
traceConfig.marker.size = 16;
|
|
161
|
+
}
|
|
162
|
+
datasets.forEach((dataset, index) => {
|
|
163
|
+
let pieTexts = traceConfig.text;
|
|
164
|
+
if (model.showPercentages) {
|
|
165
|
+
const percentages = model.getPercentages([dataset])[0];
|
|
166
|
+
pieTexts = labels.map((l, li) => (model.showOnlyPercentages ? percentages[li] : PlotlySetup.getTruncatedLabel(l, model.labelTruncateLength) + "<br>" + percentages[li]) + "%");
|
|
265
167
|
}
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
168
|
+
if (!isAllZeros(dataset)) {
|
|
169
|
+
traces.push(Object.assign({}, traceConfig, {
|
|
170
|
+
values: dataset,
|
|
171
|
+
text: pieTexts,
|
|
172
|
+
domain: {
|
|
173
|
+
column: traces.length % layoutColumns,
|
|
174
|
+
row: Math.floor(traces.length / layoutColumns),
|
|
175
|
+
},
|
|
176
|
+
title: {
|
|
177
|
+
position: "bottom center",
|
|
178
|
+
text: seriesLabels[index],
|
|
179
|
+
font: PlotlySetup.defaultTooltipConfig(model.theme),
|
|
180
|
+
}
|
|
181
|
+
}));
|
|
272
182
|
}
|
|
183
|
+
});
|
|
184
|
+
const radius = labels.length < 10 ? labels.length * 50 + 100 : 550;
|
|
185
|
+
const height = (radius + 25) * Math.ceil(traces.length / layoutColumns);
|
|
186
|
+
const layout = {
|
|
187
|
+
height: height,
|
|
188
|
+
margin: {
|
|
189
|
+
l: 0,
|
|
190
|
+
t: 25,
|
|
191
|
+
b: 0,
|
|
192
|
+
r: 0,
|
|
193
|
+
},
|
|
194
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
195
|
+
colorway: colors,
|
|
196
|
+
hovermode: "closest",
|
|
197
|
+
plot_bgcolor: "transparent",
|
|
198
|
+
paper_bgcolor: "transparent",
|
|
199
|
+
showlegend: false,
|
|
273
200
|
};
|
|
274
|
-
if (
|
|
275
|
-
|
|
276
|
-
|
|
201
|
+
if (traces.length > 0) {
|
|
202
|
+
if (hasSeries) {
|
|
203
|
+
layout.annotations = [];
|
|
204
|
+
layout.grid = { rows: Math.ceil(traces.length / layoutColumns), columns: layoutColumns };
|
|
205
|
+
}
|
|
277
206
|
}
|
|
278
|
-
else
|
|
279
|
-
|
|
280
|
-
|
|
207
|
+
else {
|
|
208
|
+
traces = [{
|
|
209
|
+
type: "pie",
|
|
210
|
+
labels: [],
|
|
211
|
+
values: [],
|
|
212
|
+
hoverinfo: "none",
|
|
213
|
+
textinfo: "none",
|
|
214
|
+
marker: {
|
|
215
|
+
colors: [],
|
|
216
|
+
line: {
|
|
217
|
+
color: "transparent",
|
|
218
|
+
width: 2
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
hole: 0.4,
|
|
222
|
+
rotation: 0
|
|
223
|
+
}];
|
|
224
|
+
layout.annotations = PlotlySetup.noDataAnnotations(model.theme);
|
|
281
225
|
}
|
|
282
|
-
|
|
283
|
-
return button;
|
|
226
|
+
return { traces, layout, hasSeries };
|
|
284
227
|
}
|
|
285
|
-
static
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
228
|
+
static setupBar(model, answersData) {
|
|
229
|
+
let lineHeight = 30;
|
|
230
|
+
let topMargin = 30;
|
|
231
|
+
let bottomMargin = 30;
|
|
232
|
+
let { datasets, labels, colors, texts, seriesLabels, labelsTitle, valuesTitle } = answersData;
|
|
233
|
+
const hasSeries = seriesLabels.length > 1 || model.dataType === "matrix";
|
|
234
|
+
const isHistogram = model.type === "histogram";
|
|
235
|
+
if (isHistogram) {
|
|
236
|
+
const reversedAnswersData = reverseAll(labels, seriesLabels, colors, hasSeries, texts, datasets);
|
|
237
|
+
labels = reversedAnswersData.labels;
|
|
238
|
+
datasets = reversedAnswersData.datasets;
|
|
239
|
+
texts = reversedAnswersData.texts;
|
|
240
|
+
}
|
|
241
|
+
const traces = [];
|
|
242
|
+
const traceConfig = {
|
|
243
|
+
type: model.chartType === "line" ? "line" : "bar",
|
|
244
|
+
y: labels,
|
|
245
|
+
customdata: labels,
|
|
246
|
+
hoverinfo: "text",
|
|
247
|
+
orientation: "h",
|
|
248
|
+
textposition: "inside",
|
|
249
|
+
textangle: 0,
|
|
250
|
+
insidetextanchor: "middle",
|
|
251
|
+
insidetextfont: PlotlySetup.defaultInsideLabelFont(model.theme),
|
|
252
|
+
hoverlabel: PlotlySetup.defaultTooltipConfig(model.theme),
|
|
253
|
+
};
|
|
254
|
+
if (!hasSeries && !isHistogram) {
|
|
255
|
+
traceConfig.mode = "markers";
|
|
256
|
+
traceConfig.marker = { color: colors };
|
|
257
|
+
}
|
|
258
|
+
datasets.forEach((dataset, index) => {
|
|
259
|
+
const traceName = hasSeries ? seriesLabels[index] : labels[index];
|
|
260
|
+
const percentString = model.showPercentages ? "%" : "";
|
|
261
|
+
const trace = Object.assign({}, traceConfig, {
|
|
262
|
+
x: dataset,
|
|
263
|
+
name: traceName,
|
|
264
|
+
text: texts[index],
|
|
265
|
+
hovertext: labels.map((label, labelIndex) => {
|
|
266
|
+
if (model.showOnlyPercentages) {
|
|
267
|
+
return `${texts[index][labelIndex]}${percentString}`;
|
|
268
|
+
}
|
|
269
|
+
else {
|
|
270
|
+
return hasSeries ? `${traceName} : ${label}, ${texts[index][labelIndex]}${percentString}` : `${texts[index][labelIndex]}${percentString}, ${label}`;
|
|
271
|
+
}
|
|
272
|
+
}),
|
|
273
|
+
});
|
|
274
|
+
if (model.showPercentages) {
|
|
275
|
+
let texttemplate = model.showOnlyPercentages ? "%{text}%" : "%{value} (%{text}%)";
|
|
276
|
+
trace.texttemplate = texttemplate;
|
|
277
|
+
}
|
|
278
|
+
traces.push(trace);
|
|
289
279
|
});
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
arrays.forEach((arr) => {
|
|
333
|
-
zipArray[i].push(arr[i]);
|
|
280
|
+
const height = (labels.length + 1) * lineHeight + topMargin + bottomMargin;
|
|
281
|
+
const layout = {
|
|
282
|
+
bargap: isHistogram ? 0 : PlotlySetup.defaultBarGap,
|
|
283
|
+
height: height,
|
|
284
|
+
margin: {
|
|
285
|
+
t: topMargin,
|
|
286
|
+
b: bottomMargin,
|
|
287
|
+
r: 0,
|
|
288
|
+
l: 0,
|
|
289
|
+
},
|
|
290
|
+
colorway: colors,
|
|
291
|
+
hovermode: "closest",
|
|
292
|
+
showlegend: hasSeries,
|
|
293
|
+
barmode: hasSeries && model.chartType == "stackedbar" ? "stack" : "group",
|
|
294
|
+
xaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisXWithGridLineConfig(model.theme)), { rangemode: "nonnegative" }),
|
|
295
|
+
yaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisYConfig(model.theme)), { type: "category", orientation: "h", tickmode: "array", tickvals: labels, ticktext: labels.map((label) => {
|
|
296
|
+
return PlotlySetup.getTruncatedLabel(label, model.labelTruncateLength) + " ";
|
|
297
|
+
}) }),
|
|
298
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
299
|
+
plot_bgcolor: "transparent",
|
|
300
|
+
paper_bgcolor: "transparent",
|
|
301
|
+
};
|
|
302
|
+
if (hasSeries) {
|
|
303
|
+
layout.legend = PlotlySetup.defaultLegendConfig(model);
|
|
304
|
+
if (model.chartType !== "stackedbar") {
|
|
305
|
+
layout.height = (labels.length * seriesLabels.length + 1) * lineHeight + topMargin + bottomMargin;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
if (labelsTitle) {
|
|
309
|
+
layout.yaxis.title = { text: labelsTitle };
|
|
310
|
+
}
|
|
311
|
+
if (valuesTitle) {
|
|
312
|
+
layout.xaxis.title = { text: valuesTitle };
|
|
313
|
+
}
|
|
314
|
+
if (["ar", "fa"].indexOf(localization.currentLocale) !== -1) {
|
|
315
|
+
layout.xaxis.autorange = "reversed";
|
|
316
|
+
layout.yaxis.side = "right";
|
|
317
|
+
const legendSettings = Object.assign({}, PlotlySetup.defaultLegendConfig(model), {
|
|
318
|
+
x: 0,
|
|
319
|
+
y: 1,
|
|
320
|
+
xanchor: "left",
|
|
321
|
+
yanchor: "top"
|
|
334
322
|
});
|
|
323
|
+
layout.legend = legendSettings;
|
|
335
324
|
}
|
|
336
|
-
return
|
|
325
|
+
return { traces, layout, hasSeries };
|
|
337
326
|
}
|
|
338
|
-
static
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
327
|
+
static setupVBar(model, answersData) {
|
|
328
|
+
var _a, _b, _c, _d;
|
|
329
|
+
let topMargin = 30;
|
|
330
|
+
let bottomMargin = 30;
|
|
331
|
+
let { datasets, labels, colors, texts, seriesLabels, labelsTitle, valuesTitle } = answersData;
|
|
332
|
+
const hasSeries = seriesLabels.length > 1 || model.dataType === "matrix";
|
|
333
|
+
const isHistogram = model.type === "histogram";
|
|
334
|
+
if (!isHistogram && model.type !== "pivot") {
|
|
335
|
+
({ labels, seriesLabels, colors, texts, datasets } = reverseAll(labels, seriesLabels, colors, hasSeries, texts, datasets));
|
|
336
|
+
}
|
|
337
|
+
const traces = [];
|
|
338
|
+
const traceConfig = {
|
|
339
|
+
type: model.chartType === "line" ? "line" : "bar",
|
|
340
|
+
x: labels,
|
|
341
|
+
customdata: hasSeries ? seriesLabels : labels,
|
|
342
|
+
hoverinfo: hasSeries ? undefined : "x+y",
|
|
343
|
+
orientation: "v",
|
|
344
|
+
insidetextanchor: "middle",
|
|
345
|
+
insidetextfont: PlotlySetup.defaultInsideLabelFont(model.theme),
|
|
346
|
+
hoverlabel: PlotlySetup.defaultTooltipConfig(model.theme),
|
|
347
|
+
};
|
|
348
|
+
if (!hasSeries && !isHistogram) {
|
|
349
|
+
traceConfig.mode = "markers";
|
|
350
|
+
traceConfig.marker = { color: colors };
|
|
351
|
+
}
|
|
352
|
+
const yAxisInfo = model.getYAxisInfo();
|
|
353
|
+
const hasDualAxis = yAxisInfo.length >= 2;
|
|
354
|
+
datasets.forEach((dataset, index) => {
|
|
355
|
+
var trace = Object.assign({}, traceConfig, {
|
|
356
|
+
y: dataset,
|
|
357
|
+
name: hasSeries ? seriesLabels[index] : labels[index],
|
|
358
|
+
text: texts[index],
|
|
359
|
+
offsetgroup: index,
|
|
345
360
|
});
|
|
361
|
+
if (hasDualAxis && hasSeries) {
|
|
362
|
+
const seriesName = seriesLabels[index];
|
|
363
|
+
const onSecondary = yAxisInfo[1].seriesName && yAxisInfo[1].seriesName.indexOf(seriesName) !== -1;
|
|
364
|
+
if (onSecondary) {
|
|
365
|
+
trace.yaxis = "y2";
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
if (model.showPercentages) {
|
|
369
|
+
let texttemplate = model.showOnlyPercentages ? "%{text}%" : "%{value} (%{text}%)";
|
|
370
|
+
trace.texttemplate = texttemplate;
|
|
371
|
+
}
|
|
372
|
+
traces.push(trace);
|
|
346
373
|
});
|
|
347
|
-
|
|
374
|
+
const maxTicks = 50;
|
|
375
|
+
const tickStep = Math.ceil(labels.length / maxTicks);
|
|
376
|
+
const primaryYAxisTitle = ((_b = (_a = yAxisInfo[0]) === null || _a === void 0 ? void 0 : _a.title) === null || _b === void 0 ? void 0 : _b.text) || valuesTitle;
|
|
377
|
+
const secondaryYAxisTitle = ((_d = (_c = yAxisInfo[1]) === null || _c === void 0 ? void 0 : _c.title) === null || _d === void 0 ? void 0 : _d.text) || "";
|
|
378
|
+
const layout = {
|
|
379
|
+
margin: {
|
|
380
|
+
t: topMargin,
|
|
381
|
+
b: bottomMargin,
|
|
382
|
+
r: 0,
|
|
383
|
+
l: 0,
|
|
384
|
+
},
|
|
385
|
+
colorway: colors,
|
|
386
|
+
hovermode: "closest",
|
|
387
|
+
plot_bgcolor: "transparent",
|
|
388
|
+
paper_bgcolor: "transparent",
|
|
389
|
+
showlegend: hasSeries,
|
|
390
|
+
bargap: isHistogram ? 0 : PlotlySetup.defaultBarGap,
|
|
391
|
+
yaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisYWithGridLineConfig(model.theme)), { rangemode: "nonnegative", automargin: true, title: primaryYAxisTitle ? { text: primaryYAxisTitle, font: PlotlySetup.defaultAxisTitleFont(model.theme) } : undefined }),
|
|
392
|
+
xaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisXConfig(model.theme)), { automargin: true, type: "category", tickmode: "array", tickvals: labels, ticktext: labels.map((label, index) => {
|
|
393
|
+
if (labels.length > maxTicks && index % tickStep !== 0) {
|
|
394
|
+
return "";
|
|
395
|
+
}
|
|
396
|
+
return PlotlySetup.getTruncatedLabel(label, model.labelTruncateLength);
|
|
397
|
+
}) }),
|
|
398
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
399
|
+
};
|
|
400
|
+
if (labelsTitle) {
|
|
401
|
+
layout.xaxis.title = { text: labelsTitle };
|
|
402
|
+
}
|
|
403
|
+
if (hasDualAxis) {
|
|
404
|
+
layout.yaxis2 = Object.assign(Object.assign({}, PlotlySetup.defaultAxisYWithGridLineConfig(model.theme)), { overlaying: "y", anchor: "x", side: "right", title: secondaryYAxisTitle ? { text: secondaryYAxisTitle, font: PlotlySetup.defaultAxisTitleFont(model.theme) } : undefined });
|
|
405
|
+
}
|
|
406
|
+
if (model.showPercentages && model.showOnlyPercentages) ;
|
|
407
|
+
if (!model.getValueType || model.getValueType() != "date") {
|
|
408
|
+
layout.xaxis = Object.assign(Object.assign({}, PlotlySetup.defaultAxisXConfig(model.theme)), { type: "category" });
|
|
409
|
+
}
|
|
410
|
+
if (hasDualAxis) {
|
|
411
|
+
layout.xaxis.domain = [0.1, 0.9];
|
|
412
|
+
}
|
|
413
|
+
return { traces, layout, hasSeries };
|
|
348
414
|
}
|
|
349
|
-
static
|
|
350
|
-
let
|
|
351
|
-
let
|
|
352
|
-
|
|
353
|
-
|
|
415
|
+
static setupScatter(model, answersData) {
|
|
416
|
+
let lineHeight = 30;
|
|
417
|
+
let topMargin = 30;
|
|
418
|
+
let bottomMargin = 30;
|
|
419
|
+
let { datasets, labels, colors, texts, seriesLabels, } = answersData;
|
|
420
|
+
const hasSeries = seriesLabels.length > 1 || model.dataType === "matrix";
|
|
421
|
+
const traces = [];
|
|
422
|
+
const traceConfig = {
|
|
423
|
+
type: "scatter",
|
|
424
|
+
y: (hasSeries ? seriesLabels : labels).map((label) => {
|
|
425
|
+
return PlotlySetup.getTruncatedLabel(label, model.labelTruncateLength);
|
|
426
|
+
}),
|
|
427
|
+
customdata: hasSeries ? seriesLabels : labels,
|
|
428
|
+
text: hasSeries ? seriesLabels : labels,
|
|
429
|
+
hoverinfo: "x+y",
|
|
430
|
+
orientation: "h",
|
|
431
|
+
mode: "markers",
|
|
432
|
+
marker: {},
|
|
354
433
|
};
|
|
355
|
-
|
|
356
|
-
|
|
434
|
+
if (!hasSeries) {
|
|
435
|
+
traceConfig.marker.symbol = "circle";
|
|
436
|
+
traceConfig.marker.size = 16;
|
|
437
|
+
}
|
|
438
|
+
datasets.forEach((dataset) => {
|
|
439
|
+
{
|
|
440
|
+
var trace = Object.assign({}, traceConfig, {
|
|
441
|
+
x: dataset,
|
|
442
|
+
});
|
|
443
|
+
traces.push(trace);
|
|
444
|
+
}
|
|
357
445
|
});
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
446
|
+
const height = (labels.length + 1) * lineHeight + topMargin + bottomMargin;
|
|
447
|
+
const layout = {
|
|
448
|
+
height: height,
|
|
449
|
+
margin: {
|
|
450
|
+
t: topMargin,
|
|
451
|
+
b: bottomMargin,
|
|
452
|
+
r: 0,
|
|
453
|
+
l: 0,
|
|
454
|
+
},
|
|
455
|
+
colorway: colors,
|
|
456
|
+
hovermode: "closest",
|
|
457
|
+
yaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisYConfig(model.theme)), { type: "category", ticklen: 5, tickcolor: "transparent" }),
|
|
458
|
+
xaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisXConfig(model.theme)), { rangemode: "nonnegative" }),
|
|
459
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
460
|
+
plot_bgcolor: "transparent",
|
|
461
|
+
paper_bgcolor: "transparent",
|
|
462
|
+
showlegend: false,
|
|
463
|
+
};
|
|
464
|
+
if (hasSeries) {
|
|
465
|
+
layout.showlegend = true;
|
|
466
|
+
layout.legend = PlotlySetup.defaultLegendConfig(model);
|
|
467
|
+
layout.height = undefined;
|
|
468
|
+
labels.forEach((label, index) => {
|
|
469
|
+
traces[index].hoverinfo = "x+name";
|
|
470
|
+
traces[index].marker.color = undefined;
|
|
471
|
+
traces[index].name = label;
|
|
472
|
+
});
|
|
473
|
+
}
|
|
474
|
+
return { traces, layout, hasSeries };
|
|
363
475
|
}
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
}));
|
|
373
|
-
if (index < links.length - 1) {
|
|
374
|
-
linksContainer.appendChild(DocumentHelper.createElement("br"));
|
|
476
|
+
static setupGauge(model, answersData) {
|
|
477
|
+
let value = answersData.datasets[0][answersData.values.indexOf(model.displayValueName || "value")];
|
|
478
|
+
let minValue = answersData.datasets[0][answersData.values.indexOf("min")] || 0;
|
|
479
|
+
let maxValue = answersData.datasets[0][answersData.values.indexOf("max")] || value * 1.25;
|
|
480
|
+
if (model.dataType === "rating") {
|
|
481
|
+
const rateValues = model.question.visibleRateValues;
|
|
482
|
+
maxValue = rateValues[rateValues.length - 1].value;
|
|
483
|
+
minValue = rateValues[0].value;
|
|
375
484
|
}
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
485
|
+
model.generateColors(maxValue, minValue, NumberModel.stepsCount);
|
|
486
|
+
if (NumberModel.showAsPercentage) {
|
|
487
|
+
value = DataHelper.toPercentage(value, maxValue);
|
|
488
|
+
minValue = DataHelper.toPercentage(minValue, maxValue);
|
|
489
|
+
maxValue = DataHelper.toPercentage(maxValue, maxValue);
|
|
490
|
+
}
|
|
491
|
+
var traces = [
|
|
492
|
+
{
|
|
493
|
+
type: "indicator",
|
|
494
|
+
mode: "gauge+number",
|
|
495
|
+
gauge: Object.assign(Object.assign({}, PlotlySetup.defaultGaugeConfig(model.theme)), { axis: {
|
|
496
|
+
range: [minValue, maxValue],
|
|
497
|
+
tickfont: Object.assign({}, PlotlySetup.defaultGaugeTickFont(model.theme))
|
|
498
|
+
}, shape: model.chartType }),
|
|
499
|
+
value: value,
|
|
500
|
+
text: model.name,
|
|
501
|
+
domain: { x: [0, 1], y: [0, 1] },
|
|
502
|
+
number: {
|
|
503
|
+
font: Object.assign({}, PlotlySetup.defaultValueGaugeFont(model.theme))
|
|
504
|
+
},
|
|
505
|
+
},
|
|
506
|
+
];
|
|
507
|
+
const chartMargin = model.chartType === "bullet" ? 60 : 30;
|
|
508
|
+
var layout = {
|
|
509
|
+
height: model.chartType === "bullet" ? 150 : 250,
|
|
510
|
+
margin: {
|
|
511
|
+
l: chartMargin,
|
|
512
|
+
r: chartMargin,
|
|
513
|
+
b: chartMargin,
|
|
514
|
+
t: chartMargin,
|
|
515
|
+
pad: 5
|
|
516
|
+
},
|
|
517
|
+
plot_bgcolor: "transparent",
|
|
518
|
+
paper_bgcolor: "transparent",
|
|
519
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
520
|
+
};
|
|
521
|
+
return { traces, layout, hasSeries: false };
|
|
522
|
+
}
|
|
523
|
+
static setupRadar(model, answersData) {
|
|
524
|
+
let { datasets, labels, colors, texts, seriesLabels, } = answersData;
|
|
525
|
+
const hasSeries = seriesLabels.length > 1 || model.dataType === "matrix";
|
|
526
|
+
const traces = [];
|
|
527
|
+
const traceConfig = {
|
|
528
|
+
type: "scatterpolar",
|
|
529
|
+
mode: "lines+markers",
|
|
530
|
+
fill: "toself",
|
|
531
|
+
line: {
|
|
532
|
+
width: 2
|
|
533
|
+
},
|
|
534
|
+
marker: {
|
|
535
|
+
size: 6
|
|
536
|
+
}
|
|
537
|
+
};
|
|
538
|
+
datasets.forEach((dataset, index) => {
|
|
539
|
+
const traceName = hasSeries ? seriesLabels[index] : "";
|
|
540
|
+
const trace = Object.assign({}, traceConfig, {
|
|
541
|
+
r: dataset,
|
|
542
|
+
theta: labels,
|
|
543
|
+
name: traceName,
|
|
544
|
+
text: texts[index],
|
|
545
|
+
hoverinfo: "r+theta+name",
|
|
546
|
+
customdata: labels,
|
|
547
|
+
hovertemplate: "%{theta}: %{r}" +
|
|
548
|
+
"<extra></extra>",
|
|
549
|
+
line: Object.assign(Object.assign({}, traceConfig.line), { color: colors[index % colors.length] }),
|
|
550
|
+
marker: Object.assign(Object.assign({}, traceConfig.marker), { color: colors[index % colors.length] })
|
|
551
|
+
});
|
|
552
|
+
traces.push(trace);
|
|
553
|
+
});
|
|
554
|
+
const layout = {
|
|
555
|
+
polar: {
|
|
556
|
+
radialaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisConfig(model.theme)), { visible: true, range: [0, Math.max(...datasets.map(s => Math.max(...s))) * 1.1], gridcolor: model.theme.axisGridColor, linecolor: model.theme.axisBorderColor, tickcolor: model.theme.axisBorderColor, gridwidth: 1 }),
|
|
557
|
+
angularaxis: Object.assign(Object.assign({}, PlotlySetup.defaultAxisConfig(model.theme)), { tickfont: model.theme.radarLabelFont, linecolor: model.theme.axisGridColor })
|
|
558
|
+
},
|
|
559
|
+
showlegend: hasSeries,
|
|
560
|
+
legend: hasSeries ? PlotlySetup.defaultLegendConfig(model) : undefined,
|
|
561
|
+
colorway: colors,
|
|
562
|
+
plot_bgcolor: "transparent",
|
|
563
|
+
paper_bgcolor: "transparent",
|
|
564
|
+
margin: {
|
|
565
|
+
l: 50,
|
|
566
|
+
r: 50,
|
|
567
|
+
t: 50,
|
|
568
|
+
b: 50
|
|
569
|
+
},
|
|
570
|
+
modebar: Object.assign({}, PlotlySetup.defaultModebarConfig(model.theme)),
|
|
571
|
+
hovermode: "closest",
|
|
572
|
+
hoverlabel: PlotlySetup.defaultTooltipConfig(model.theme),
|
|
573
|
+
};
|
|
574
|
+
return { traces, layout, hasSeries };
|
|
575
|
+
}
|
|
392
576
|
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
showLabel: "نمایش",
|
|
419
|
-
// "entries"
|
|
420
|
-
entriesLabel: "ورودی",
|
|
421
|
-
// "Texts in table"
|
|
422
|
-
visualizer_text: "متون در جدول",
|
|
423
|
-
// "Wordcloud"
|
|
424
|
-
visualizer_wordcloud: "ابر کلمات",
|
|
425
|
-
// "Histogram"
|
|
426
|
-
visualizer_histogram: "هیستوگرام",
|
|
427
|
-
// "Average"
|
|
428
|
-
visualizer_number: "متوسط",
|
|
429
|
-
// "Table"
|
|
430
|
-
visualizer_choices: "جدول",
|
|
431
|
-
// "Chart"
|
|
432
|
-
visualizer_selectBase: "نمودار",
|
|
433
|
-
// [Auto-translated] "Chart"
|
|
434
|
-
visualizer_matrix: "نمودار",
|
|
435
|
-
// [Auto-translated] "Bar"
|
|
436
|
-
chartType_bar: "نوار",
|
|
437
|
-
// "Vertical Bar"
|
|
438
|
-
chartType_vbar: "نوار عمودی",
|
|
439
|
-
// "Stacked Bar"
|
|
440
|
-
chartType_stackedbar: "نوار پشته",
|
|
441
|
-
// "Doughnut"
|
|
442
|
-
chartType_doughnut: "دونات",
|
|
443
|
-
// "Pie"
|
|
444
|
-
chartType_pie: "دابره ای(pie)",
|
|
445
|
-
// "Scatter"
|
|
446
|
-
chartType_scatter: "پراکندگی(Scatter)",
|
|
447
|
-
// "Gauge"
|
|
448
|
-
chartType_gauge: "عقربه ای",
|
|
449
|
-
// "Bullet"
|
|
450
|
-
chartType_bullet: "Bullet",
|
|
451
|
-
// [Auto-translated] "Line"
|
|
452
|
-
chartType_line: "خط",
|
|
453
|
-
// [Auto-translated] "Radar"
|
|
454
|
-
chartType_radar: "رادار",
|
|
455
|
-
// "Hide"
|
|
456
|
-
hideButton: "مخفی",
|
|
457
|
-
// "Make private"
|
|
458
|
-
makePrivateButton: "خصوصی کردن",
|
|
459
|
-
// "Make public"
|
|
460
|
-
makePublicButton: "عمومی کردن",
|
|
461
|
-
// "Show"
|
|
462
|
-
showButton: "نمایش",
|
|
463
|
-
// "Filter"
|
|
464
|
-
filter: "فیلتر",
|
|
465
|
-
// "Reset Filter"
|
|
466
|
-
resetFilter: "بازنشانی فیلترها",
|
|
467
|
-
// "Change Locale"
|
|
468
|
-
changeLocale: "تغییر محلی",
|
|
469
|
-
// "Clear"
|
|
470
|
-
clearButton: "پاک کردن",
|
|
471
|
-
// "Choose question to show..."
|
|
472
|
-
addElement: "انتخاب سوال برای نمایش...",
|
|
473
|
-
// "Default Order"
|
|
474
|
-
defaultOrder: "ترتیب پیشفرض",
|
|
475
|
-
// "Ascending"
|
|
476
|
-
ascOrder: "صعودی",
|
|
477
|
-
// "Descending"
|
|
478
|
-
descOrder: "نزولی",
|
|
479
|
-
// "Show minor columns"
|
|
480
|
-
showMinorColumns: "نمایش ستونهای فرعی",
|
|
481
|
-
// [Auto-translated] "Actions"
|
|
482
|
-
actionsColumn: "اقدامات",
|
|
483
|
-
// "Other items and comments"
|
|
484
|
-
otherCommentTitle: "سایر موارد و نظرات",
|
|
485
|
-
// "Show percentages"
|
|
486
|
-
showPercentages: "نمایش درصد",
|
|
487
|
-
// "Hide percentages"
|
|
488
|
-
hidePercentages: "درصدهای مخفی",
|
|
489
|
-
// "PDF"
|
|
490
|
-
pdfDownloadCaption: "پی دی اف",
|
|
491
|
-
// "Excel"
|
|
492
|
-
xlsxDownloadCaption: "اکسل",
|
|
493
|
-
// "CSV"
|
|
494
|
-
csvDownloadCaption: "Csv",
|
|
495
|
-
// "Download plot as a PNG file"
|
|
496
|
-
saveDiagramAsPNG: "دانلود طرح به عنوان یک فایل PNG",
|
|
497
|
-
// "Hide empty answers"
|
|
498
|
-
hideEmptyAnswers: "مخفی کردن پاسخهای خالی",
|
|
499
|
-
// "Show empty answers"
|
|
500
|
-
showEmptyAnswers: "نمایش پاسخهای خالی",
|
|
501
|
-
// "All answers"
|
|
502
|
-
"topNValueText-1": "همه پاسخ ها",
|
|
503
|
-
// "Top 5 answers"
|
|
504
|
-
topNValueText5: "5 پاسخ برتر",
|
|
505
|
-
// "Top 10 answers"
|
|
506
|
-
topNValueText10: "10 پاسخ برتر",
|
|
507
|
-
// "Top 20 answers"
|
|
508
|
-
topNValueText20: "20 پاسخ برتر",
|
|
509
|
-
// "Hide missing answers"
|
|
510
|
-
hideMissingAnswers: "مخفی کردن پاسخهای گمشده",
|
|
511
|
-
// "Show missing answers"
|
|
512
|
-
showMissingAnswers: "نمایش پاسخهای گمشده",
|
|
513
|
-
// "Missing answers"
|
|
514
|
-
missingAnswersLabel: "پاسخ های گمشده",
|
|
515
|
-
// "This question type is not visualized yet"
|
|
516
|
-
noVisualizerForQuestion: "این نوع سوال هنوز تجسم نشده است",
|
|
517
|
-
// "There are no results yet"
|
|
518
|
-
noResults: "هنوز نتیجه ای حاصل نشده است",
|
|
519
|
-
// "Per Values"
|
|
520
|
-
showPerValues: "به ازای هر ارزش",
|
|
521
|
-
// "Per Columns"
|
|
522
|
-
showPerColumns: "در هر ستون",
|
|
523
|
-
// "Answer"
|
|
524
|
-
answer: "پاسخ",
|
|
525
|
-
// "Correct answer: "
|
|
526
|
-
correctAnswer: "پاسخ صحیح: ",
|
|
527
|
-
// "Percent"
|
|
528
|
-
percent: "درصد",
|
|
529
|
-
// [Auto-translated] "Percentage"
|
|
530
|
-
percentage: "درصد",
|
|
531
|
-
// [Auto-translated] "Chart"
|
|
532
|
-
statistics_chart: "نمودار",
|
|
533
|
-
// "Responses"
|
|
534
|
-
responses: "پاسخ",
|
|
535
|
-
// [Auto-translated] "NPS"
|
|
536
|
-
visualizer_nps: "NPS",
|
|
537
|
-
// [Auto-translated] "Chart"
|
|
538
|
-
visualizer_boolean: "نمودار",
|
|
539
|
-
// [Auto-translated] "Table"
|
|
540
|
-
visualizer_options: "جدول",
|
|
541
|
-
// [Auto-translated] "NPS"
|
|
542
|
-
npsScore: "NPS",
|
|
543
|
-
// [Auto-translated] "Promoters"
|
|
544
|
-
npsPromoters: "مروج",
|
|
545
|
-
// [Auto-translated] "Passives"
|
|
546
|
-
npsPassives: "منفعل ها",
|
|
547
|
-
// [Auto-translated] "Detractors"
|
|
548
|
-
npsDetractors: "بدهیدان",
|
|
549
|
-
// [Auto-translated] "Category (X Axis):"
|
|
550
|
-
axisXSelectorTitle: "دسته (محور X):",
|
|
551
|
-
// [Auto-translated] "Legend (Series):"
|
|
552
|
-
axisYSelectorTitle: "افسانه (سری):",
|
|
553
|
-
// [Auto-translated] "Segments:"
|
|
554
|
-
axisXAlternativeSelectorTitle: "بخش:",
|
|
555
|
-
// [Auto-translated] "Groups:"
|
|
556
|
-
axisYAlternativeSelectorTitle: "گروه:",
|
|
557
|
-
// [Auto-translated] "Not selected"
|
|
558
|
-
notSelected: "انتخاب نشده است",
|
|
559
|
-
// [Auto-translated] "Default"
|
|
560
|
-
intervalMode_default: "پیش فرض",
|
|
561
|
-
// [Auto-translated] "Decades"
|
|
562
|
-
intervalMode_decades: "دهه",
|
|
563
|
-
// [Auto-translated] "Years"
|
|
564
|
-
intervalMode_years: "سال",
|
|
565
|
-
// [Auto-translated] "Quarters"
|
|
566
|
-
intervalMode_quarters: "چهارم",
|
|
567
|
-
// [Auto-translated] "Months"
|
|
568
|
-
intervalMode_months: "ماهها",
|
|
569
|
-
// [Auto-translated] "Days"
|
|
570
|
-
intervalMode_days: "روزها",
|
|
571
|
-
// [Auto-translated] "Custom"
|
|
572
|
-
intervalMode_custom: "سفارشی",
|
|
573
|
-
// [Auto-translated] "Auto"
|
|
574
|
-
intervalMode_auto: "خودکار",
|
|
575
|
-
// [Auto-translated] "Intervals:"
|
|
576
|
-
intervalModeTitle: "فواصل:",
|
|
577
|
-
// [Auto-translated] "Show individual values"
|
|
578
|
-
noRunningTotals: "نمایش ارزش های فردی",
|
|
579
|
-
// [Auto-translated] "Show running totals"
|
|
580
|
-
runningTotals: "نمایش مجموع در حال اجرا",
|
|
581
|
-
// [Auto-translated] "Compare periods"
|
|
582
|
-
groupDateSeries: "دوره ها را مقایسه کنید",
|
|
583
|
-
// [Auto-translated] "View timeline"
|
|
584
|
-
ungroupDateSeries: "مشاهده جدول زمانی",
|
|
585
|
-
// [Auto-translated] "None"
|
|
586
|
-
noneAggregateText: "هیچ کدام",
|
|
587
|
-
// [Auto-translated] "Aggregate:"
|
|
588
|
-
selectAggregateText: "مجموع:",
|
|
589
|
-
// [Auto-translated] "Year ends with"
|
|
590
|
-
groupedYearsAxisTitle: "سال به پایان می رسد با"
|
|
591
|
-
};
|
|
592
|
-
setupLocale({ localeCode: "fa", strings: farsiStrings, nativeName: "فارسی" });
|
|
593
|
-
|
|
594
|
-
var frenchStrings = {
|
|
595
|
-
// "Group By Me"
|
|
596
|
-
groupButton: "Grouper",
|
|
597
|
-
// "Ungroup By Me"
|
|
598
|
-
ungroupButton: "Dissocier",
|
|
599
|
-
// "Select Me"
|
|
600
|
-
selectButton: "Sélectionner",
|
|
601
|
-
// "Hide column"
|
|
602
|
-
hideColumn: "Masquer la colonne",
|
|
603
|
-
// "Show column"
|
|
604
|
-
showColumn: "Afficher la colonne",
|
|
605
|
-
// "Make column private"
|
|
606
|
-
makePrivateColumn: "Rendre la colonne privée",
|
|
607
|
-
// "Make column public"
|
|
608
|
-
makePublicColumn: "Rendre la colonne publique",
|
|
609
|
-
// "Move to Detail"
|
|
610
|
-
moveToDetail: "Déplacer vers détails",
|
|
611
|
-
// "Show as Column"
|
|
612
|
-
showAsColumn: "Afficher en colonne",
|
|
613
|
-
// "Search..."
|
|
614
|
-
filterPlaceholder: "Rechercher...",
|
|
615
|
-
// "Remove rows"
|
|
616
|
-
removeRows: "Supprimer les lignes",
|
|
617
|
-
// "Show"
|
|
618
|
-
showLabel: "Afficher",
|
|
619
|
-
// "entries"
|
|
620
|
-
entriesLabel: "entrées",
|
|
621
|
-
// "Texts in table"
|
|
622
|
-
visualizer_text: "Textes dans le tableau",
|
|
623
|
-
// "Wordcloud"
|
|
624
|
-
visualizer_wordcloud: "Nuage de mots",
|
|
625
|
-
// "Histogram"
|
|
626
|
-
visualizer_histogram: "Histogramme",
|
|
627
|
-
// "Average"
|
|
628
|
-
visualizer_number: "Moyenne",
|
|
629
|
-
// "Table"
|
|
630
|
-
visualizer_choices: "Table",
|
|
631
|
-
// "Chart"
|
|
632
|
-
visualizer_selectBase: "Graphique",
|
|
633
|
-
// [Auto-translated] "Chart"
|
|
634
|
-
visualizer_matrix: "Graphique",
|
|
635
|
-
// [Auto-translated] "Bar"
|
|
636
|
-
chartType_bar: "Barre",
|
|
637
|
-
// "Vertical Bar"
|
|
638
|
-
chartType_vbar: "Barre verticale",
|
|
639
|
-
// "Stacked Bar"
|
|
640
|
-
chartType_stackedbar: "Barres empilées",
|
|
641
|
-
// "Doughnut"
|
|
642
|
-
chartType_doughnut: "Anneau",
|
|
643
|
-
// "Pie"
|
|
644
|
-
chartType_pie: "Secteurs",
|
|
645
|
-
// "Scatter"
|
|
646
|
-
chartType_scatter: "Nuage de points",
|
|
647
|
-
// "Gauge"
|
|
648
|
-
chartType_gauge: "Cadran",
|
|
649
|
-
// "Bullet"
|
|
650
|
-
chartType_bullet: "Bulles",
|
|
651
|
-
// [Auto-translated] "Line"
|
|
652
|
-
chartType_line: "Ligne",
|
|
653
|
-
// [Auto-translated] "Radar"
|
|
654
|
-
chartType_radar: "Radar",
|
|
655
|
-
// "Hide"
|
|
656
|
-
hideButton: "Masquer",
|
|
657
|
-
// "Make private"
|
|
658
|
-
makePrivateButton: "Rendre privé",
|
|
659
|
-
// "Make public"
|
|
660
|
-
makePublicButton: "Rendre publique",
|
|
661
|
-
// "Show"
|
|
662
|
-
showButton: "Afficher",
|
|
663
|
-
// "Filter"
|
|
664
|
-
filter: "Filtre",
|
|
665
|
-
// "Reset Filter"
|
|
666
|
-
resetFilter: "Réinitialiser le Filtre",
|
|
667
|
-
// "Change Locale"
|
|
668
|
-
changeLocale: "Changer les paramètres régionaux",
|
|
669
|
-
// "Clear"
|
|
670
|
-
clearButton: "Rafraichir",
|
|
671
|
-
// "Choose question to show..."
|
|
672
|
-
addElement: "Choisir la question à afficher...",
|
|
673
|
-
// "Default Order"
|
|
674
|
-
defaultOrder: "Ordre par défaut",
|
|
675
|
-
// "Ascending"
|
|
676
|
-
ascOrder: "Ascendant",
|
|
677
|
-
// "Descending"
|
|
678
|
-
descOrder: "Descendant",
|
|
679
|
-
// "Show minor columns"
|
|
680
|
-
showMinorColumns: "Afficher les colonnes mineures",
|
|
681
|
-
// [Auto-translated] "Actions"
|
|
682
|
-
actionsColumn: "Actions",
|
|
683
|
-
// "Other items and comments"
|
|
684
|
-
otherCommentTitle: "Autres éléments et commentaires",
|
|
685
|
-
// "Show percentages"
|
|
686
|
-
showPercentages: "Afficher les pourcentages",
|
|
687
|
-
// "Hide percentages"
|
|
688
|
-
hidePercentages: "Masquer les pourcentages",
|
|
689
|
-
// "PDF"
|
|
690
|
-
pdfDownloadCaption: "PDF",
|
|
691
|
-
// "Excel"
|
|
692
|
-
xlsxDownloadCaption: "Fichier Excel",
|
|
693
|
-
// "CSV"
|
|
694
|
-
csvDownloadCaption: "Fichier CSV",
|
|
695
|
-
// "Download plot as a PNG file"
|
|
696
|
-
saveDiagramAsPNG: "Sauvegarder en PNG",
|
|
697
|
-
// "Hide empty answers"
|
|
698
|
-
hideEmptyAnswers: "Masquer les réponses vides",
|
|
699
|
-
// "Show empty answers"
|
|
700
|
-
showEmptyAnswers: "Afficher les réponses vides",
|
|
701
|
-
// "All answers"
|
|
702
|
-
"topNValueText-1": "Toutes les réponses",
|
|
703
|
-
// "Top 5 answers"
|
|
704
|
-
topNValueText5: "Top 5 des réponses",
|
|
705
|
-
// "Top 10 answers"
|
|
706
|
-
topNValueText10: "Top 10 des réponses",
|
|
707
|
-
// "Top 20 answers"
|
|
708
|
-
topNValueText20: "Top 20 des réponses",
|
|
709
|
-
// "Hide missing answers"
|
|
710
|
-
hideMissingAnswers: "Masquer les réponses manquantes",
|
|
711
|
-
// "Show missing answers"
|
|
712
|
-
showMissingAnswers: "Afficher les réponses manquantes",
|
|
713
|
-
// "Missing answers"
|
|
714
|
-
missingAnswersLabel: "Réponses manquantes",
|
|
715
|
-
// "This question type is not visualized yet"
|
|
716
|
-
noVisualizerForQuestion: "Ce type de question n'est pas encore visualisé",
|
|
717
|
-
// "There are no results yet"
|
|
718
|
-
noResults: "Il n'y a pas encore de résultats",
|
|
719
|
-
// "Per Values"
|
|
720
|
-
showPerValues: "Par valeur",
|
|
721
|
-
// "Per Columns"
|
|
722
|
-
showPerColumns: "Par colonne",
|
|
723
|
-
// "Answer"
|
|
724
|
-
answer: "Réponse",
|
|
725
|
-
// "Correct answer: "
|
|
726
|
-
correctAnswer: "Réponse correcte: ",
|
|
727
|
-
// "Percent"
|
|
728
|
-
percent: "Pourcentage",
|
|
729
|
-
// [Auto-translated] "Percentage"
|
|
730
|
-
percentage: "Pourcentage",
|
|
731
|
-
// [Auto-translated] "Chart"
|
|
732
|
-
statistics_chart: "Graphique",
|
|
733
|
-
// "Responses"
|
|
734
|
-
responses: "Réponses",
|
|
735
|
-
// [Auto-translated] "NPS"
|
|
736
|
-
visualizer_nps: "Le NPS",
|
|
737
|
-
// [Auto-translated] "Chart"
|
|
738
|
-
visualizer_boolean: "Graphique",
|
|
739
|
-
// [Auto-translated] "Table"
|
|
740
|
-
visualizer_options: "Table",
|
|
741
|
-
// [Auto-translated] "NPS"
|
|
742
|
-
npsScore: "Le NPS",
|
|
743
|
-
// [Auto-translated] "Promoters"
|
|
744
|
-
npsPromoters: "Promoteurs",
|
|
745
|
-
// [Auto-translated] "Passives"
|
|
746
|
-
npsPassives: "Passifs",
|
|
747
|
-
// [Auto-translated] "Detractors"
|
|
748
|
-
npsDetractors: "Détracteurs",
|
|
749
|
-
// [Auto-translated] "Category (X Axis):"
|
|
750
|
-
axisXSelectorTitle: "Catégorie (axe X) :",
|
|
751
|
-
// [Auto-translated] "Legend (Series):"
|
|
752
|
-
axisYSelectorTitle: "Légende (série) :",
|
|
753
|
-
// [Auto-translated] "Segments:"
|
|
754
|
-
axisXAlternativeSelectorTitle: "Segments:",
|
|
755
|
-
// [Auto-translated] "Groups:"
|
|
756
|
-
axisYAlternativeSelectorTitle: "Groupes:",
|
|
757
|
-
// [Auto-translated] "Not selected"
|
|
758
|
-
notSelected: "Non sélectionné",
|
|
759
|
-
// [Auto-translated] "Default"
|
|
760
|
-
intervalMode_default: "Par défaut",
|
|
761
|
-
// [Auto-translated] "Decades"
|
|
762
|
-
intervalMode_decades: "Décennies",
|
|
763
|
-
// [Auto-translated] "Years"
|
|
764
|
-
intervalMode_years: "Années",
|
|
765
|
-
// [Auto-translated] "Quarters"
|
|
766
|
-
intervalMode_quarters: "Trimestres",
|
|
767
|
-
// [Auto-translated] "Months"
|
|
768
|
-
intervalMode_months: "Mois",
|
|
769
|
-
// [Auto-translated] "Days"
|
|
770
|
-
intervalMode_days: "Jours",
|
|
771
|
-
// [Auto-translated] "Custom"
|
|
772
|
-
intervalMode_custom: "Personnalisé",
|
|
773
|
-
// [Auto-translated] "Auto"
|
|
774
|
-
intervalMode_auto: "Auto",
|
|
775
|
-
// [Auto-translated] "Intervals:"
|
|
776
|
-
intervalModeTitle: "Intervalles:",
|
|
777
|
-
// [Auto-translated] "Show individual values"
|
|
778
|
-
noRunningTotals: "Afficher les valeurs individuelles",
|
|
779
|
-
// [Auto-translated] "Show running totals"
|
|
780
|
-
runningTotals: "Afficher les totaux cumulés",
|
|
781
|
-
// [Auto-translated] "Compare periods"
|
|
782
|
-
groupDateSeries: "Comparer les périodes",
|
|
783
|
-
// [Auto-translated] "View timeline"
|
|
784
|
-
ungroupDateSeries: "Voir la chronologie",
|
|
785
|
-
// [Auto-translated] "None"
|
|
786
|
-
noneAggregateText: "Aucun",
|
|
787
|
-
// [Auto-translated] "Aggregate:"
|
|
788
|
-
selectAggregateText: "Agrégat:",
|
|
789
|
-
// [Auto-translated] "Year ends with"
|
|
790
|
-
groupedYearsAxisTitle: "L’exercice se termine avec"
|
|
791
|
-
};
|
|
792
|
-
setupLocale({ localeCode: "fr", strings: frenchStrings, nativeName: "Français" });
|
|
793
|
-
|
|
794
|
-
var germanStrings = {
|
|
795
|
-
// "Group By Me"
|
|
796
|
-
groupButton: "Gruppieren",
|
|
797
|
-
// "Ungroup By Me"
|
|
798
|
-
ungroupButton: "Gruppierung aufheben",
|
|
799
|
-
// "Select Me"
|
|
800
|
-
selectButton: "Mich auswählen",
|
|
801
|
-
// "Hide column"
|
|
802
|
-
hideColumn: "Spalte ausblenden",
|
|
803
|
-
// "Show column"
|
|
804
|
-
showColumn: "Spalte einblenden",
|
|
805
|
-
// "Make column private"
|
|
806
|
-
makePrivateColumn: "Spalte privat machen",
|
|
807
|
-
// "Make column public"
|
|
808
|
-
makePublicColumn: "Spalte veröffentlichen",
|
|
809
|
-
// "Move to Detail"
|
|
810
|
-
moveToDetail: "in Details verschieben",
|
|
811
|
-
// "Show as Column"
|
|
812
|
-
showAsColumn: "Als Spalte anzeigen",
|
|
813
|
-
// "Search..."
|
|
814
|
-
filterPlaceholder: "Suche...",
|
|
815
|
-
// "Remove rows"
|
|
816
|
-
removeRows: "Zeilen entfernen",
|
|
817
|
-
// "Show"
|
|
818
|
-
showLabel: "Anzeigen",
|
|
819
|
-
// "entries"
|
|
820
|
-
entriesLabel: "Einträge",
|
|
821
|
-
// "Texts in table"
|
|
822
|
-
visualizer_text: "Texte in Tabellenform",
|
|
823
|
-
// "Wordcloud"
|
|
824
|
-
visualizer_wordcloud: "Wordcloud",
|
|
825
|
-
// "Histogram"
|
|
826
|
-
visualizer_histogram: "Histogramm",
|
|
827
|
-
// "Average"
|
|
828
|
-
visualizer_number: "Durchschnitt",
|
|
829
|
-
// "Table"
|
|
830
|
-
visualizer_choices: "Tabelle",
|
|
831
|
-
// "Chart"
|
|
832
|
-
visualizer_selectBase: "Diagrammtyp",
|
|
833
|
-
// [Auto-translated] "Chart"
|
|
834
|
-
visualizer_matrix: "Diagramm",
|
|
835
|
-
// "Bar"
|
|
836
|
-
chartType_bar: "Balkendiagramm",
|
|
837
|
-
// "Vertical Bar"
|
|
838
|
-
chartType_vbar: "Balkendiagramm vertikal",
|
|
839
|
-
// "Stacked Bar"
|
|
840
|
-
chartType_stackedbar: "Gestapeltes Balkendiagramm",
|
|
841
|
-
// "Doughnut"
|
|
842
|
-
chartType_doughnut: "Donut-Diagramm",
|
|
843
|
-
// "Pie"
|
|
844
|
-
chartType_pie: "Kreisdiagramm",
|
|
845
|
-
// "Scatter"
|
|
846
|
-
chartType_scatter: "Punktediagramm",
|
|
847
|
-
// "Gauge"
|
|
848
|
-
chartType_gauge: "Pegeldiagramm",
|
|
849
|
-
// "Bullet"
|
|
850
|
-
chartType_bullet: "Aufzählungsdiagramm",
|
|
851
|
-
// [Auto-translated] "Line"
|
|
852
|
-
chartType_line: "Linie",
|
|
853
|
-
// [Auto-translated] "Radar"
|
|
854
|
-
chartType_radar: "Radar",
|
|
855
|
-
// "Hide"
|
|
856
|
-
hideButton: "Ausblenden",
|
|
857
|
-
// "Make private"
|
|
858
|
-
makePrivateButton: "Privat machen",
|
|
859
|
-
// "Make public"
|
|
860
|
-
makePublicButton: "Öffentlich machen",
|
|
861
|
-
// "Show"
|
|
862
|
-
showButton: "Anzeigen",
|
|
863
|
-
// "Filter"
|
|
864
|
-
filter: "Filter",
|
|
865
|
-
// "Reset Filter"
|
|
866
|
-
resetFilter: "Filter zurücksetzen",
|
|
867
|
-
// "Change Locale"
|
|
868
|
-
changeLocale: "Lokalisierung ändern",
|
|
869
|
-
// "Clear"
|
|
870
|
-
clearButton: "Einstellungen löschen",
|
|
871
|
-
// "Choose question to show..."
|
|
872
|
-
addElement: "Wählen Sie eine Frage, um zu zeigen...",
|
|
873
|
-
// "Default Order"
|
|
874
|
-
defaultOrder: "Standardreihenfolge",
|
|
875
|
-
// "Ascending"
|
|
876
|
-
ascOrder: "Aufsteigend",
|
|
877
|
-
// "Descending"
|
|
878
|
-
descOrder: "Absteigend",
|
|
879
|
-
// "Show minor columns"
|
|
880
|
-
showMinorColumns: "Kleinere Spalten anzeigen",
|
|
881
|
-
// [Auto-translated] "Actions"
|
|
882
|
-
actionsColumn: "Aktionen",
|
|
883
|
-
// "Other items and comments"
|
|
884
|
-
otherCommentTitle: "Andere Punkte und Kommentare",
|
|
885
|
-
// "Show percentages"
|
|
886
|
-
showPercentages: "Prozentsätze anzeigen",
|
|
887
|
-
// "Hide percentages"
|
|
888
|
-
hidePercentages: "Prozentsätze ausblenden",
|
|
889
|
-
// "PDF"
|
|
890
|
-
pdfDownloadCaption: "PDF",
|
|
891
|
-
// "Excel"
|
|
892
|
-
xlsxDownloadCaption: "Excel",
|
|
893
|
-
// "CSV"
|
|
894
|
-
csvDownloadCaption: "CSV",
|
|
895
|
-
// "Download plot as a PNG file"
|
|
896
|
-
saveDiagramAsPNG: "Diagramm als PNG herunterladen",
|
|
897
|
-
// "Hide empty answers"
|
|
898
|
-
hideEmptyAnswers: "Leere Antworten ausblenden",
|
|
899
|
-
// "Show empty answers"
|
|
900
|
-
showEmptyAnswers: "Leere Antworten anzeigen",
|
|
901
|
-
// "All answers"
|
|
902
|
-
"topNValueText-1": "Alle Antworten",
|
|
903
|
-
// "Top 5 answers"
|
|
904
|
-
topNValueText5: "Top 5 Antworten",
|
|
905
|
-
// "Top 10 answers"
|
|
906
|
-
topNValueText10: "Top 10 Antworten",
|
|
907
|
-
// "Top 20 answers"
|
|
908
|
-
topNValueText20: "Top 20 Antworten",
|
|
909
|
-
// "Hide missing answers"
|
|
910
|
-
hideMissingAnswers: "Fehlende Antworten ausblenden",
|
|
911
|
-
// "Show missing answers"
|
|
912
|
-
showMissingAnswers: "Fehlende Antworten anzeigen",
|
|
913
|
-
// "Missing answers"
|
|
914
|
-
missingAnswersLabel: "Fehlende Antworten",
|
|
915
|
-
// "This question type is not visualized yet"
|
|
916
|
-
noVisualizerForQuestion: "Für diesen Fragetyp gibt es noch keine Visualisierung.",
|
|
917
|
-
// "There are no results yet"
|
|
918
|
-
noResults: "Es liegen noch keine Ergebnisse vor",
|
|
919
|
-
// "Per Values"
|
|
920
|
-
showPerValues: "Pro Wert",
|
|
921
|
-
// "Per Columns"
|
|
922
|
-
showPerColumns: "Pro Spalte",
|
|
923
|
-
// "Answer"
|
|
924
|
-
answer: "Antwort",
|
|
925
|
-
// "Correct answer: "
|
|
926
|
-
correctAnswer: "Korrekte Antwort: ",
|
|
927
|
-
// "Percent"
|
|
928
|
-
percent: "Prozent",
|
|
929
|
-
// [Auto-translated] "Percentage"
|
|
930
|
-
percentage: "Prozentsatz",
|
|
931
|
-
// [Auto-translated] "Chart"
|
|
932
|
-
statistics_chart: "Diagramm",
|
|
933
|
-
// "Responses"
|
|
934
|
-
responses: "Antworten",
|
|
935
|
-
// "NPS"
|
|
936
|
-
visualizer_nps: "NPS",
|
|
937
|
-
// [Auto-translated] "Chart"
|
|
938
|
-
visualizer_boolean: "Diagramm",
|
|
939
|
-
// "Table"
|
|
940
|
-
visualizer_options: "Tabelle",
|
|
941
|
-
// "NPS"
|
|
942
|
-
npsScore: "NPS",
|
|
943
|
-
// "Promoters"
|
|
944
|
-
npsPromoters: "Promotoren",
|
|
945
|
-
// "Passives"
|
|
946
|
-
npsPassives: "Passive",
|
|
947
|
-
// "Detractors"
|
|
948
|
-
npsDetractors: "Detraktoren",
|
|
949
|
-
// [Auto-translated] "Category (X Axis):"
|
|
950
|
-
axisXSelectorTitle: "Kategorie (X-Achse):",
|
|
951
|
-
// [Auto-translated] "Legend (Series):"
|
|
952
|
-
axisYSelectorTitle: "Legende (Serie):",
|
|
953
|
-
// [Auto-translated] "Segments:"
|
|
954
|
-
axisXAlternativeSelectorTitle: "Segmente:",
|
|
955
|
-
// [Auto-translated] "Groups:"
|
|
956
|
-
axisYAlternativeSelectorTitle: "Gruppen:",
|
|
957
|
-
// [Auto-translated] "Not selected"
|
|
958
|
-
notSelected: "Nicht ausgewählt",
|
|
959
|
-
// [Auto-translated] "Default"
|
|
960
|
-
intervalMode_default: "Vorgabe",
|
|
961
|
-
// [Auto-translated] "Decades"
|
|
962
|
-
intervalMode_decades: "Dekaden",
|
|
963
|
-
// [Auto-translated] "Years"
|
|
964
|
-
intervalMode_years: "Jahre",
|
|
965
|
-
// [Auto-translated] "Quarters"
|
|
966
|
-
intervalMode_quarters: "Quartier",
|
|
967
|
-
// [Auto-translated] "Months"
|
|
968
|
-
intervalMode_months: "Monate",
|
|
969
|
-
// [Auto-translated] "Days"
|
|
970
|
-
intervalMode_days: "Tage",
|
|
971
|
-
// [Auto-translated] "Custom"
|
|
972
|
-
intervalMode_custom: "Gewohnheit",
|
|
973
|
-
// [Auto-translated] "Auto"
|
|
974
|
-
intervalMode_auto: "Auto",
|
|
975
|
-
// [Auto-translated] "Intervals:"
|
|
976
|
-
intervalModeTitle: "Intervalle:",
|
|
977
|
-
// [Auto-translated] "Show individual values"
|
|
978
|
-
noRunningTotals: "Einzelne Werte anzeigen",
|
|
979
|
-
// [Auto-translated] "Show running totals"
|
|
980
|
-
runningTotals: "Laufende Summen anzeigen",
|
|
981
|
-
// [Auto-translated] "Compare periods"
|
|
982
|
-
groupDateSeries: "Zeiträume vergleichen",
|
|
983
|
-
// [Auto-translated] "View timeline"
|
|
984
|
-
ungroupDateSeries: "Zeitleiste anzeigen",
|
|
985
|
-
// [Auto-translated] "None"
|
|
986
|
-
noneAggregateText: "Nichts",
|
|
987
|
-
// [Auto-translated] "Aggregate:"
|
|
988
|
-
selectAggregateText: "Aggregat:",
|
|
989
|
-
// [Auto-translated] "Year ends with"
|
|
990
|
-
groupedYearsAxisTitle: "Das Jahr endet mit"
|
|
991
|
-
};
|
|
992
|
-
setupLocale({ localeCode: "de", strings: germanStrings, nativeName: "Deutsch" });
|
|
993
|
-
|
|
994
|
-
var norwegianStrings = {
|
|
995
|
-
// "Group By Me"
|
|
996
|
-
groupButton: "Grupper",
|
|
997
|
-
// "Ungroup By Me"
|
|
998
|
-
ungroupButton: "Opphev gruppering",
|
|
999
|
-
// "Select Me"
|
|
1000
|
-
selectButton: "Velg",
|
|
1001
|
-
// "Hide column"
|
|
1002
|
-
hideColumn: "Skjul kolonne",
|
|
1003
|
-
// "Show column"
|
|
1004
|
-
showColumn: "Vis kolonne",
|
|
1005
|
-
// "Make column private"
|
|
1006
|
-
makePrivateColumn: "Gjør kolonne privat",
|
|
1007
|
-
// "Make column public"
|
|
1008
|
-
makePublicColumn: "Gjør kolonne offentlig",
|
|
1009
|
-
// "Move to Detail"
|
|
1010
|
-
moveToDetail: "Flytt til detaljert visning",
|
|
1011
|
-
// "Show as Column"
|
|
1012
|
-
showAsColumn: "Vis som kolonne",
|
|
1013
|
-
// "Search..."
|
|
1014
|
-
filterPlaceholder: "Søk...",
|
|
1015
|
-
// "Remove rows"
|
|
1016
|
-
removeRows: "Fjern rader",
|
|
1017
|
-
// "Show"
|
|
1018
|
-
showLabel: "Vis",
|
|
1019
|
-
// "entries"
|
|
1020
|
-
entriesLabel: "oppføringer",
|
|
1021
|
-
// "Texts in table"
|
|
1022
|
-
visualizer_text: "Tabellvisning",
|
|
1023
|
-
// "Wordcloud"
|
|
1024
|
-
visualizer_wordcloud: "Ordsky",
|
|
1025
|
-
// "Histogram"
|
|
1026
|
-
visualizer_histogram: "Histogram",
|
|
1027
|
-
// "Average"
|
|
1028
|
-
visualizer_number: "Gjennomsnitt",
|
|
1029
|
-
// "Table"
|
|
1030
|
-
visualizer_choices: "Bord",
|
|
1031
|
-
// "Chart"
|
|
1032
|
-
visualizer_selectBase: "Sjøkart",
|
|
1033
|
-
// [Auto-translated] "Chart"
|
|
1034
|
-
visualizer_matrix: "Sjøkart",
|
|
1035
|
-
// [Auto-translated] "Bar"
|
|
1036
|
-
chartType_bar: "Bar",
|
|
1037
|
-
// "Vertical Bar"
|
|
1038
|
-
chartType_vbar: "Vertikal stolpe",
|
|
1039
|
-
// "Stacked Bar"
|
|
1040
|
-
chartType_stackedbar: "Stablet stolpediagram",
|
|
1041
|
-
// "Doughnut"
|
|
1042
|
-
chartType_doughnut: "Hjuldiagram",
|
|
1043
|
-
// "Pie"
|
|
1044
|
-
chartType_pie: "Sektordiagram",
|
|
1045
|
-
// "Scatter"
|
|
1046
|
-
chartType_scatter: "Punktdiagram",
|
|
1047
|
-
// "Gauge"
|
|
1048
|
-
chartType_gauge: "Målediagram",
|
|
1049
|
-
// "Bullet"
|
|
1050
|
-
chartType_bullet: "Kulediagram",
|
|
1051
|
-
// [Auto-translated] "Line"
|
|
1052
|
-
chartType_line: "Linje",
|
|
1053
|
-
// [Auto-translated] "Radar"
|
|
1054
|
-
chartType_radar: "Radar",
|
|
1055
|
-
// "Hide"
|
|
1056
|
-
hideButton: "Skjul",
|
|
1057
|
-
// "Make private"
|
|
1058
|
-
makePrivateButton: "Gjør privat",
|
|
1059
|
-
// "Make public"
|
|
1060
|
-
makePublicButton: "Gjør offentlig",
|
|
1061
|
-
// "Show"
|
|
1062
|
-
showButton: "Vis",
|
|
1063
|
-
// "Filter"
|
|
1064
|
-
filter: "Filter",
|
|
1065
|
-
// "Reset Filter"
|
|
1066
|
-
resetFilter: "Nullstill filter",
|
|
1067
|
-
// "Change Locale"
|
|
1068
|
-
changeLocale: "Bytt språk",
|
|
1069
|
-
// "Clear"
|
|
1070
|
-
clearButton: "Tøm",
|
|
1071
|
-
// "Choose question to show..."
|
|
1072
|
-
addElement: "Velg spørsmål...",
|
|
1073
|
-
// "Default Order"
|
|
1074
|
-
defaultOrder: "Standard",
|
|
1075
|
-
// "Ascending"
|
|
1076
|
-
ascOrder: "Stigende",
|
|
1077
|
-
// "Descending"
|
|
1078
|
-
descOrder: "Synkende",
|
|
1079
|
-
// "Show minor columns"
|
|
1080
|
-
showMinorColumns: "Vis mindre kolonner",
|
|
1081
|
-
// [Auto-translated] "Actions"
|
|
1082
|
-
actionsColumn: "Handlinger",
|
|
1083
|
-
// "Other items and comments"
|
|
1084
|
-
otherCommentTitle: "Annet og kommentarer",
|
|
1085
|
-
// "Show percentages"
|
|
1086
|
-
showPercentages: "Vis prosenter",
|
|
1087
|
-
// "Hide percentages"
|
|
1088
|
-
hidePercentages: "Skjul prosenter",
|
|
1089
|
-
// "PDF"
|
|
1090
|
-
pdfDownloadCaption: "PDF",
|
|
1091
|
-
// "Excel"
|
|
1092
|
-
xlsxDownloadCaption: "Overgå",
|
|
1093
|
-
// "CSV"
|
|
1094
|
-
csvDownloadCaption: "CSV",
|
|
1095
|
-
// "Download plot as a PNG file"
|
|
1096
|
-
saveDiagramAsPNG: "Last ned plott som en PNG-fil",
|
|
1097
|
-
// "Hide empty answers"
|
|
1098
|
-
hideEmptyAnswers: "Skjul tomme svar",
|
|
1099
|
-
// "Show empty answers"
|
|
1100
|
-
showEmptyAnswers: "Vis tomme svar",
|
|
1101
|
-
// "All answers"
|
|
1102
|
-
"topNValueText-1": "Alle svar",
|
|
1103
|
-
// "Top 5 answers"
|
|
1104
|
-
topNValueText5: "Topp 5 svar",
|
|
1105
|
-
// "Top 10 answers"
|
|
1106
|
-
topNValueText10: "Topp 10 svar",
|
|
1107
|
-
// "Top 20 answers"
|
|
1108
|
-
topNValueText20: "Topp 20 svar",
|
|
1109
|
-
// "Hide missing answers"
|
|
1110
|
-
hideMissingAnswers: "Skjul manglende svar",
|
|
1111
|
-
// "Show missing answers"
|
|
1112
|
-
showMissingAnswers: "Vis manglende svar",
|
|
1113
|
-
// "Missing answers"
|
|
1114
|
-
missingAnswersLabel: "Mangler svar",
|
|
1115
|
-
// "This question type is not visualized yet"
|
|
1116
|
-
noVisualizerForQuestion: "Denne spørsmålstypen er ikke visualisert ennå",
|
|
1117
|
-
// "There are no results yet"
|
|
1118
|
-
noResults: "Det er ingen resultater ennå",
|
|
1119
|
-
// "Per Values"
|
|
1120
|
-
showPerValues: "Per verdier",
|
|
1121
|
-
// "Per Columns"
|
|
1122
|
-
showPerColumns: "Per kolonner",
|
|
1123
|
-
// "Answer"
|
|
1124
|
-
answer: "Svare",
|
|
1125
|
-
// "Correct answer: "
|
|
1126
|
-
correctAnswer: "Riktig svar: ",
|
|
1127
|
-
// "Percent"
|
|
1128
|
-
percent: "Prosent",
|
|
1129
|
-
// [Auto-translated] "Percentage"
|
|
1130
|
-
percentage: "Prosent",
|
|
1131
|
-
// [Auto-translated] "Chart"
|
|
1132
|
-
statistics_chart: "Sjøkart",
|
|
1133
|
-
// "Responses"
|
|
1134
|
-
responses: "Svar",
|
|
1135
|
-
// [Auto-translated] "NPS"
|
|
1136
|
-
visualizer_nps: "NPS",
|
|
1137
|
-
// [Auto-translated] "Chart"
|
|
1138
|
-
visualizer_boolean: "Sjøkart",
|
|
1139
|
-
// [Auto-translated] "Table"
|
|
1140
|
-
visualizer_options: "Bord",
|
|
1141
|
-
// [Auto-translated] "NPS"
|
|
1142
|
-
npsScore: "NPS",
|
|
1143
|
-
// [Auto-translated] "Promoters"
|
|
1144
|
-
npsPromoters: "Arrangører",
|
|
1145
|
-
// [Auto-translated] "Passives"
|
|
1146
|
-
npsPassives: "Passive",
|
|
1147
|
-
// [Auto-translated] "Detractors"
|
|
1148
|
-
npsDetractors: "Motstandere",
|
|
1149
|
-
// [Auto-translated] "Category (X Axis):"
|
|
1150
|
-
axisXSelectorTitle: "Kategori (X-akse):",
|
|
1151
|
-
// [Auto-translated] "Legend (Series):"
|
|
1152
|
-
axisYSelectorTitle: "Legende (serie):",
|
|
1153
|
-
// [Auto-translated] "Segments:"
|
|
1154
|
-
axisXAlternativeSelectorTitle: "Segmenter:",
|
|
1155
|
-
// [Auto-translated] "Groups:"
|
|
1156
|
-
axisYAlternativeSelectorTitle: "Grupper:",
|
|
1157
|
-
// [Auto-translated] "Not selected"
|
|
1158
|
-
notSelected: "Ikke valgt",
|
|
1159
|
-
// [Auto-translated] "Default"
|
|
1160
|
-
intervalMode_default: "Standard",
|
|
1161
|
-
// [Auto-translated] "Decades"
|
|
1162
|
-
intervalMode_decades: "Tiår",
|
|
1163
|
-
// [Auto-translated] "Years"
|
|
1164
|
-
intervalMode_years: "År",
|
|
1165
|
-
// [Auto-translated] "Quarters"
|
|
1166
|
-
intervalMode_quarters: "Kvartaler",
|
|
1167
|
-
// [Auto-translated] "Months"
|
|
1168
|
-
intervalMode_months: "Måneder",
|
|
1169
|
-
// [Auto-translated] "Days"
|
|
1170
|
-
intervalMode_days: "Dager",
|
|
1171
|
-
// [Auto-translated] "Custom"
|
|
1172
|
-
intervalMode_custom: "Skikk",
|
|
1173
|
-
// [Auto-translated] "Auto"
|
|
1174
|
-
intervalMode_auto: "Auto",
|
|
1175
|
-
// [Auto-translated] "Intervals:"
|
|
1176
|
-
intervalModeTitle: "Intervaller:",
|
|
1177
|
-
// [Auto-translated] "Show individual values"
|
|
1178
|
-
noRunningTotals: "Vis individuelle verdier",
|
|
1179
|
-
// [Auto-translated] "Show running totals"
|
|
1180
|
-
runningTotals: "Vis løpende totaler",
|
|
1181
|
-
// [Auto-translated] "Compare periods"
|
|
1182
|
-
groupDateSeries: "Sammenlign perioder",
|
|
1183
|
-
// [Auto-translated] "View timeline"
|
|
1184
|
-
ungroupDateSeries: "Vis tidslinje",
|
|
1185
|
-
// [Auto-translated] "None"
|
|
1186
|
-
noneAggregateText: "Ingen",
|
|
1187
|
-
// [Auto-translated] "Aggregate:"
|
|
1188
|
-
selectAggregateText: "Samlet:",
|
|
1189
|
-
// [Auto-translated] "Year ends with"
|
|
1190
|
-
groupedYearsAxisTitle: "Året avsluttes med"
|
|
1191
|
-
};
|
|
1192
|
-
setupLocale({ localeCode: "no", strings: norwegianStrings, nativeName: "Norsk" });
|
|
1193
|
-
|
|
1194
|
-
var portugueseStrings = {
|
|
1195
|
-
// "Group By Me"
|
|
1196
|
-
groupButton: "Agrupar Por Mim",
|
|
1197
|
-
// "Ungroup By Me"
|
|
1198
|
-
ungroupButton: "Desagrupar Por Mim",
|
|
1199
|
-
// "Select Me"
|
|
1200
|
-
selectButton: "Selecionar",
|
|
1201
|
-
// "Hide column"
|
|
1202
|
-
hideColumn: "Esconder coluna",
|
|
1203
|
-
// "Show column"
|
|
1204
|
-
showColumn: "Mostrar coluna",
|
|
1205
|
-
// "Make column private"
|
|
1206
|
-
makePrivateColumn: "Tornar coluna privada",
|
|
1207
|
-
// "Make column public"
|
|
1208
|
-
makePublicColumn: "Tornar coluna pública",
|
|
1209
|
-
// "Move to Detail"
|
|
1210
|
-
moveToDetail: "Mover para Detalhes",
|
|
1211
|
-
// "Show as Column"
|
|
1212
|
-
showAsColumn: "Mostrar como Coluna",
|
|
1213
|
-
// "Search..."
|
|
1214
|
-
filterPlaceholder: "Pesquisar...",
|
|
1215
|
-
// "Remove rows"
|
|
1216
|
-
removeRows: "Remover linhas",
|
|
1217
|
-
// "Show"
|
|
1218
|
-
showLabel: "Mostrar",
|
|
1219
|
-
// "entries"
|
|
1220
|
-
entriesLabel: "entradas",
|
|
1221
|
-
// "Texts in table"
|
|
1222
|
-
visualizer_text: "Textos em tabela",
|
|
1223
|
-
// "Wordcloud"
|
|
1224
|
-
visualizer_wordcloud: "Nuvem de palavras",
|
|
1225
|
-
// "Histogram"
|
|
1226
|
-
visualizer_histogram: "Histograma",
|
|
1227
|
-
// "Average"
|
|
1228
|
-
visualizer_number: "Média",
|
|
1229
|
-
// "Table"
|
|
1230
|
-
visualizer_choices: "Tabela",
|
|
1231
|
-
// "Chart"
|
|
1232
|
-
visualizer_selectBase: "Gráfico",
|
|
1233
|
-
// [Auto-translated] "Chart"
|
|
1234
|
-
visualizer_matrix: "Gráfico",
|
|
1235
|
-
// [Auto-translated] "Bar"
|
|
1236
|
-
chartType_bar: "Barra",
|
|
1237
|
-
// "Vertical Bar"
|
|
1238
|
-
chartType_vbar: "Barra vertical",
|
|
1239
|
-
// "Stacked Bar"
|
|
1240
|
-
chartType_stackedbar: "Barra Empilhada",
|
|
1241
|
-
// "Doughnut"
|
|
1242
|
-
chartType_doughnut: "Rosca",
|
|
1243
|
-
// "Pie"
|
|
1244
|
-
chartType_pie: "Tarte",
|
|
1245
|
-
// "Scatter"
|
|
1246
|
-
chartType_scatter: "Lastro",
|
|
1247
|
-
// "Gauge"
|
|
1248
|
-
chartType_gauge: "Escala",
|
|
1249
|
-
// "Bullet"
|
|
1250
|
-
chartType_bullet: "Bala",
|
|
1251
|
-
// [Auto-translated] "Line"
|
|
1252
|
-
chartType_line: "Linha",
|
|
1253
|
-
// [Auto-translated] "Radar"
|
|
1254
|
-
chartType_radar: "Radar",
|
|
1255
|
-
// "Hide"
|
|
1256
|
-
hideButton: "Esconder",
|
|
1257
|
-
// "Make private"
|
|
1258
|
-
makePrivateButton: "Tornar privado",
|
|
1259
|
-
// "Make public"
|
|
1260
|
-
makePublicButton: "Tornar público",
|
|
1261
|
-
// "Show"
|
|
1262
|
-
showButton: "Mostrar",
|
|
1263
|
-
// "Filter"
|
|
1264
|
-
filter: "Filtrar",
|
|
1265
|
-
// "Reset Filter"
|
|
1266
|
-
resetFilter: "Restaurar Filtro",
|
|
1267
|
-
// "Change Locale"
|
|
1268
|
-
changeLocale: "Mudar Localização",
|
|
1269
|
-
// "Clear"
|
|
1270
|
-
clearButton: "Limpar",
|
|
1271
|
-
// "Choose question to show..."
|
|
1272
|
-
addElement: "Escolher questão para mostrar...",
|
|
1273
|
-
// "Default Order"
|
|
1274
|
-
defaultOrder: "Ordenação Padrão",
|
|
1275
|
-
// "Ascending"
|
|
1276
|
-
ascOrder: "Ascendente",
|
|
1277
|
-
// "Descending"
|
|
1278
|
-
descOrder: "Descendente",
|
|
1279
|
-
// "Show minor columns"
|
|
1280
|
-
showMinorColumns: "Mostrar colunas menores",
|
|
1281
|
-
// [Auto-translated] "Actions"
|
|
1282
|
-
actionsColumn: "Ações",
|
|
1283
|
-
// "Other items and comments"
|
|
1284
|
-
otherCommentTitle: "Outros itens e comentários",
|
|
1285
|
-
// "Show percentages"
|
|
1286
|
-
showPercentages: "Mostrar percentuais",
|
|
1287
|
-
// "Hide percentages"
|
|
1288
|
-
hidePercentages: "Esconder percentuais",
|
|
1289
|
-
// "PDF"
|
|
1290
|
-
pdfDownloadCaption: "PDF",
|
|
1291
|
-
// "Excel"
|
|
1292
|
-
xlsxDownloadCaption: "Excel",
|
|
1293
|
-
// "CSV"
|
|
1294
|
-
csvDownloadCaption: "CSV",
|
|
1295
|
-
// "Download plot as a PNG file"
|
|
1296
|
-
saveDiagramAsPNG: "Baixar diagrama como PNG",
|
|
1297
|
-
// "Hide empty answers"
|
|
1298
|
-
hideEmptyAnswers: "Esconder perguntas vazias",
|
|
1299
|
-
// "Show empty answers"
|
|
1300
|
-
showEmptyAnswers: "Mostrar perguntas vazias",
|
|
1301
|
-
// "All answers"
|
|
1302
|
-
"topNValueText-1": "Todas as respostas",
|
|
1303
|
-
// "Top 5 answers"
|
|
1304
|
-
topNValueText5: "Primeiras 5 respostas",
|
|
1305
|
-
// "Top 10 answers"
|
|
1306
|
-
topNValueText10: "Primeiras 10 respostas",
|
|
1307
|
-
// "Top 20 answers"
|
|
1308
|
-
topNValueText20: "Primeiras 20 respostas",
|
|
1309
|
-
// "Hide missing answers"
|
|
1310
|
-
hideMissingAnswers: "Ocultar perguntas não respondidas",
|
|
1311
|
-
// "Show missing answers"
|
|
1312
|
-
showMissingAnswers: "Mostrar perguntas não respondidas",
|
|
1313
|
-
// "Missing answers"
|
|
1314
|
-
missingAnswersLabel: "Perguntas não respondidas",
|
|
1315
|
-
// "This question type is not visualized yet"
|
|
1316
|
-
noVisualizerForQuestion: "Este tipo de pergunta ainda não foi visualizada",
|
|
1317
|
-
// "There are no results yet"
|
|
1318
|
-
noResults: "Ainda não possui resultados",
|
|
1319
|
-
// "Per Values"
|
|
1320
|
-
showPerValues: "Por valores",
|
|
1321
|
-
// "Per Columns"
|
|
1322
|
-
showPerColumns: "Por colunas",
|
|
1323
|
-
// "Answer"
|
|
1324
|
-
answer: "Resposta",
|
|
1325
|
-
// "Correct answer: "
|
|
1326
|
-
correctAnswer: "Resposta correta: ",
|
|
1327
|
-
// "Percent"
|
|
1328
|
-
percent: "Percentagem",
|
|
1329
|
-
// [Auto-translated] "Percentage"
|
|
1330
|
-
percentage: "Porcentagem",
|
|
1331
|
-
// [Auto-translated] "Chart"
|
|
1332
|
-
statistics_chart: "Gráfico",
|
|
1333
|
-
// "Responses"
|
|
1334
|
-
responses: "Respostas",
|
|
1335
|
-
// [Auto-translated] "NPS"
|
|
1336
|
-
visualizer_nps: "NPS",
|
|
1337
|
-
// [Auto-translated] "Chart"
|
|
1338
|
-
visualizer_boolean: "Gráfico",
|
|
1339
|
-
// [Auto-translated] "Table"
|
|
1340
|
-
visualizer_options: "Mesa",
|
|
1341
|
-
// [Auto-translated] "NPS"
|
|
1342
|
-
npsScore: "NPS",
|
|
1343
|
-
// [Auto-translated] "Promoters"
|
|
1344
|
-
npsPromoters: "Promotores",
|
|
1345
|
-
// [Auto-translated] "Passives"
|
|
1346
|
-
npsPassives: "Passivos",
|
|
1347
|
-
// [Auto-translated] "Detractors"
|
|
1348
|
-
npsDetractors: "Detratores",
|
|
1349
|
-
// [Auto-translated] "Category (X Axis):"
|
|
1350
|
-
axisXSelectorTitle: "Categoria (eixo X):",
|
|
1351
|
-
// [Auto-translated] "Legend (Series):"
|
|
1352
|
-
axisYSelectorTitle: "Lenda (Série):",
|
|
1353
|
-
// [Auto-translated] "Segments:"
|
|
1354
|
-
axisXAlternativeSelectorTitle: "Segmentos:",
|
|
1355
|
-
// [Auto-translated] "Groups:"
|
|
1356
|
-
axisYAlternativeSelectorTitle: "Grupos:",
|
|
1357
|
-
// [Auto-translated] "Not selected"
|
|
1358
|
-
notSelected: "Não selecionado",
|
|
1359
|
-
// [Auto-translated] "Default"
|
|
1360
|
-
intervalMode_default: "Inadimplência",
|
|
1361
|
-
// [Auto-translated] "Decades"
|
|
1362
|
-
intervalMode_decades: "Décadas",
|
|
1363
|
-
// [Auto-translated] "Years"
|
|
1364
|
-
intervalMode_years: "Anos",
|
|
1365
|
-
// [Auto-translated] "Quarters"
|
|
1366
|
-
intervalMode_quarters: "Quartos",
|
|
1367
|
-
// [Auto-translated] "Months"
|
|
1368
|
-
intervalMode_months: "Meses",
|
|
1369
|
-
// [Auto-translated] "Days"
|
|
1370
|
-
intervalMode_days: "Dias",
|
|
1371
|
-
// [Auto-translated] "Custom"
|
|
1372
|
-
intervalMode_custom: "Costume",
|
|
1373
|
-
// [Auto-translated] "Auto"
|
|
1374
|
-
intervalMode_auto: "Automático",
|
|
1375
|
-
// [Auto-translated] "Intervals:"
|
|
1376
|
-
intervalModeTitle: "Intervalos:",
|
|
1377
|
-
// [Auto-translated] "Show individual values"
|
|
1378
|
-
noRunningTotals: "Mostrar valores individuais",
|
|
1379
|
-
// [Auto-translated] "Show running totals"
|
|
1380
|
-
runningTotals: "Mostrar totais acumulados",
|
|
1381
|
-
// [Auto-translated] "Compare periods"
|
|
1382
|
-
groupDateSeries: "Comparar períodos",
|
|
1383
|
-
// [Auto-translated] "View timeline"
|
|
1384
|
-
ungroupDateSeries: "Ver linha do tempo",
|
|
1385
|
-
// [Auto-translated] "None"
|
|
1386
|
-
noneAggregateText: "Nenhum",
|
|
1387
|
-
// [Auto-translated] "Aggregate:"
|
|
1388
|
-
selectAggregateText: "Agregado:",
|
|
1389
|
-
// [Auto-translated] "Year ends with"
|
|
1390
|
-
groupedYearsAxisTitle: "O ano termina com"
|
|
1391
|
-
};
|
|
1392
|
-
setupLocale({ localeCode: "pt", strings: portugueseStrings, nativeName: "Português" });
|
|
1393
|
-
|
|
1394
|
-
var russianStrings = {
|
|
1395
|
-
// "Group By Me"
|
|
1396
|
-
groupButton: "Сгруппировать",
|
|
1397
|
-
// "Ungroup By Me"
|
|
1398
|
-
ungroupButton: "Разгруппировать",
|
|
1399
|
-
// "Select Me"
|
|
1400
|
-
selectButton: "Выбрать",
|
|
1401
|
-
// "Hide column"
|
|
1402
|
-
hideColumn: "Скрыть столбец",
|
|
1403
|
-
// "Show column"
|
|
1404
|
-
showColumn: "Показать столбец",
|
|
1405
|
-
// "Make column private"
|
|
1406
|
-
makePrivateColumn: "Сделать столбец приватным",
|
|
1407
|
-
// "Make column public"
|
|
1408
|
-
makePublicColumn: "Сделать столбец публичным",
|
|
1409
|
-
// "Move to Detail"
|
|
1410
|
-
moveToDetail: "Спрятать в раскрывающуюся секцию",
|
|
1411
|
-
// "Show as Column"
|
|
1412
|
-
showAsColumn: "Показать как столбец",
|
|
1413
|
-
// "Search..."
|
|
1414
|
-
filterPlaceholder: "Поиск...",
|
|
1415
|
-
// "Remove rows"
|
|
1416
|
-
removeRows: "Удалить строки",
|
|
1417
|
-
// "Show"
|
|
1418
|
-
showLabel: "Показать",
|
|
1419
|
-
// "entries"
|
|
1420
|
-
entriesLabel: "записей",
|
|
1421
|
-
// "Texts in table"
|
|
1422
|
-
visualizer_text: "Таблица",
|
|
1423
|
-
// "Wordcloud"
|
|
1424
|
-
visualizer_wordcloud: "Облако тэгов",
|
|
1425
|
-
// "Histogram"
|
|
1426
|
-
visualizer_histogram: "Гистограмма",
|
|
1427
|
-
// "Average"
|
|
1428
|
-
visualizer_number: "Среднее значение",
|
|
1429
|
-
// "Table"
|
|
1430
|
-
visualizer_choices: "Таблица",
|
|
1431
|
-
// "Chart"
|
|
1432
|
-
visualizer_selectBase: "Диаграмма",
|
|
1433
|
-
// "Chart"
|
|
1434
|
-
visualizer_matrix: "Диаграмма",
|
|
1435
|
-
// "Bar"
|
|
1436
|
-
chartType_bar: "Столбчатая диаграмма",
|
|
1437
|
-
// "Vertical Bar"
|
|
1438
|
-
chartType_vbar: "Вертикальная столбчатая диаграмма",
|
|
1439
|
-
// "Stacked Bar"
|
|
1440
|
-
chartType_stackedbar: "Столбчатая диаграмма с накоплением",
|
|
1441
|
-
// "Doughnut"
|
|
1442
|
-
chartType_doughnut: "Кольцевая диаграмма",
|
|
1443
|
-
// "Pie"
|
|
1444
|
-
chartType_pie: "Круговая диаграмма",
|
|
1445
|
-
// "Scatter"
|
|
1446
|
-
chartType_scatter: "Точечная диаграмма",
|
|
1447
|
-
// "Gauge"
|
|
1448
|
-
chartType_gauge: "Измерительная диаграмма",
|
|
1449
|
-
// "Bullet"
|
|
1450
|
-
chartType_bullet: "Маркированная диаграмма",
|
|
1451
|
-
// [Auto-translated] "Line"
|
|
1452
|
-
chartType_line: "Линия",
|
|
1453
|
-
// [Auto-translated] "Radar"
|
|
1454
|
-
chartType_radar: "Радар",
|
|
1455
|
-
// "Hide"
|
|
1456
|
-
hideButton: "Скрыть",
|
|
1457
|
-
// "Make private"
|
|
1458
|
-
makePrivateButton: "Сделать приватным",
|
|
1459
|
-
// "Make public"
|
|
1460
|
-
makePublicButton: "Сделать публичным",
|
|
1461
|
-
// "Show"
|
|
1462
|
-
showButton: "Показать",
|
|
1463
|
-
// "Filter"
|
|
1464
|
-
filter: "Фильтр",
|
|
1465
|
-
// "Reset Filter"
|
|
1466
|
-
resetFilter: "Очистить фильтр",
|
|
1467
|
-
// "Change Locale"
|
|
1468
|
-
changeLocale: "Сменить язык",
|
|
1469
|
-
// "Clear"
|
|
1470
|
-
clearButton: "Очистить",
|
|
1471
|
-
// "Choose question to show..."
|
|
1472
|
-
addElement: "Выберите вопрос...",
|
|
1473
|
-
// "Default Order"
|
|
1474
|
-
defaultOrder: "Порядок по умолчанию",
|
|
1475
|
-
// "Ascending"
|
|
1476
|
-
ascOrder: "Сортировать по возрастанию",
|
|
1477
|
-
// "Descending"
|
|
1478
|
-
descOrder: "Сортировать по убыванию",
|
|
1479
|
-
// "Show minor columns"
|
|
1480
|
-
showMinorColumns: "Показать второстепенные столбцы",
|
|
1481
|
-
// [Auto-translated] "Actions"
|
|
1482
|
-
actionsColumn: "Действия",
|
|
1483
|
-
// "Other items and comments"
|
|
1484
|
-
otherCommentTitle: "Другое и комментарии",
|
|
1485
|
-
// "Show percentages"
|
|
1486
|
-
showPercentages: "Показать проценты",
|
|
1487
|
-
// "Hide percentages"
|
|
1488
|
-
hidePercentages: "Скрыть проценты",
|
|
1489
|
-
// "PDF"
|
|
1490
|
-
pdfDownloadCaption: "PDF",
|
|
1491
|
-
// "Excel"
|
|
1492
|
-
xlsxDownloadCaption: "Excel",
|
|
1493
|
-
// "CSV"
|
|
1494
|
-
csvDownloadCaption: "CSV",
|
|
1495
|
-
// "Download plot as a PNG file"
|
|
1496
|
-
saveDiagramAsPNG: "Скачать диаграмму в формате PNG",
|
|
1497
|
-
// "Hide empty answers"
|
|
1498
|
-
hideEmptyAnswers: "Скрыть пустые ответы",
|
|
1499
|
-
// "Show empty answers"
|
|
1500
|
-
showEmptyAnswers: "Показать пустые ответы",
|
|
1501
|
-
// "All answers"
|
|
1502
|
-
"topNValueText-1": "Все ответы",
|
|
1503
|
-
// "Top 5 answers"
|
|
1504
|
-
topNValueText5: "Первые 5 ответов",
|
|
1505
|
-
// "Top 10 answers"
|
|
1506
|
-
topNValueText10: "Первые 10 ответов",
|
|
1507
|
-
// "Top 20 answers"
|
|
1508
|
-
topNValueText20: "Первые 20 ответов",
|
|
1509
|
-
// "Hide missing answers"
|
|
1510
|
-
hideMissingAnswers: "Скрыть отсутствующие ответы",
|
|
1511
|
-
// "Show missing answers"
|
|
1512
|
-
showMissingAnswers: "Показать отсутствующие ответы",
|
|
1513
|
-
// "Missing answers"
|
|
1514
|
-
missingAnswersLabel: "Отсутствующие ответы",
|
|
1515
|
-
// "This question type is not visualized yet"
|
|
1516
|
-
noVisualizerForQuestion: "Этот тип вопроса не поддерживается",
|
|
1517
|
-
// "There are no results yet"
|
|
1518
|
-
noResults: "Результаты отсутствуют",
|
|
1519
|
-
// "Per Values"
|
|
1520
|
-
showPerValues: "По значениям",
|
|
1521
|
-
// "Per Columns"
|
|
1522
|
-
showPerColumns: "По столбцам",
|
|
1523
|
-
// "Answer"
|
|
1524
|
-
answer: "Ответ",
|
|
1525
|
-
// "Correct answer: "
|
|
1526
|
-
correctAnswer: "Правильный ответ: ",
|
|
1527
|
-
// "Percent"
|
|
1528
|
-
percent: "процентов",
|
|
1529
|
-
// [Auto-translated] "Percentage"
|
|
1530
|
-
percentage: "Процент",
|
|
1531
|
-
// [Auto-translated] "Chart"
|
|
1532
|
-
statistics_chart: "Диаграмма",
|
|
1533
|
-
// "Responses"
|
|
1534
|
-
responses: "ответов",
|
|
1535
|
-
// [Auto-translated] "NPS"
|
|
1536
|
-
visualizer_nps: "NPS",
|
|
1537
|
-
// [Auto-translated] "Chart"
|
|
1538
|
-
visualizer_boolean: "Диаграмма",
|
|
1539
|
-
// [Auto-translated] "Table"
|
|
1540
|
-
visualizer_options: "Стол",
|
|
1541
|
-
// [Auto-translated] "NPS"
|
|
1542
|
-
npsScore: "NPS",
|
|
1543
|
-
// [Auto-translated] "Promoters"
|
|
1544
|
-
npsPromoters: "Промоутеров",
|
|
1545
|
-
// [Auto-translated] "Passives"
|
|
1546
|
-
npsPassives: "Пассивные способности",
|
|
1547
|
-
// [Auto-translated] "Detractors"
|
|
1548
|
-
npsDetractors: "Критики",
|
|
1549
|
-
// [Auto-translated] "Category (X Axis):"
|
|
1550
|
-
axisXSelectorTitle: "Категория (ось X):",
|
|
1551
|
-
// [Auto-translated] "Legend (Series):"
|
|
1552
|
-
axisYSelectorTitle: "Легенда (Серия):",
|
|
1553
|
-
// [Auto-translated] "Segments:"
|
|
1554
|
-
axisXAlternativeSelectorTitle: "Сегментов:",
|
|
1555
|
-
// [Auto-translated] "Groups:"
|
|
1556
|
-
axisYAlternativeSelectorTitle: "Группы:",
|
|
1557
|
-
// [Auto-translated] "Not selected"
|
|
1558
|
-
notSelected: "Не выбрано",
|
|
1559
|
-
// [Auto-translated] "Default"
|
|
1560
|
-
intervalMode_default: "По умолчанию",
|
|
1561
|
-
// [Auto-translated] "Decades"
|
|
1562
|
-
intervalMode_decades: "Десятилетий",
|
|
1563
|
-
// [Auto-translated] "Years"
|
|
1564
|
-
intervalMode_years: "Годы",
|
|
1565
|
-
// [Auto-translated] "Quarters"
|
|
1566
|
-
intervalMode_quarters: "Квартира",
|
|
1567
|
-
// [Auto-translated] "Months"
|
|
1568
|
-
intervalMode_months: "Месяцы",
|
|
1569
|
-
// [Auto-translated] "Days"
|
|
1570
|
-
intervalMode_days: "Дни недели",
|
|
1571
|
-
// [Auto-translated] "Custom"
|
|
1572
|
-
intervalMode_custom: "Обычай",
|
|
1573
|
-
// [Auto-translated] "Auto"
|
|
1574
|
-
intervalMode_auto: "Авто",
|
|
1575
|
-
// [Auto-translated] "Intervals:"
|
|
1576
|
-
intervalModeTitle: "Интервалы:",
|
|
1577
|
-
// [Auto-translated] "Show individual values"
|
|
1578
|
-
noRunningTotals: "Отображение отдельных значений",
|
|
1579
|
-
// [Auto-translated] "Show running totals"
|
|
1580
|
-
runningTotals: "Показать промежуточные итоги",
|
|
1581
|
-
// [Auto-translated] "Compare periods"
|
|
1582
|
-
groupDateSeries: "Сравнение периодов",
|
|
1583
|
-
// [Auto-translated] "View timeline"
|
|
1584
|
-
ungroupDateSeries: "Просмотр временной шкалы",
|
|
1585
|
-
// [Auto-translated] "None"
|
|
1586
|
-
noneAggregateText: "Никакой",
|
|
1587
|
-
// [Auto-translated] "Aggregate:"
|
|
1588
|
-
selectAggregateText: "Совокупность:",
|
|
1589
|
-
// [Auto-translated] "Year ends with"
|
|
1590
|
-
groupedYearsAxisTitle: "Год заканчивается с"
|
|
1591
|
-
};
|
|
1592
|
-
setupLocale({ localeCode: "ru", strings: russianStrings, nativeName: "Русский" });
|
|
1593
|
-
|
|
1594
|
-
var dutchStrings = {
|
|
1595
|
-
// "Group By Me"
|
|
1596
|
-
groupButton: "Groeperen op",
|
|
1597
|
-
// "Ungroup By Me"
|
|
1598
|
-
ungroupButton: "Groepering verwijderen",
|
|
1599
|
-
// "Select Me"
|
|
1600
|
-
selectButton: "Selecteer mij",
|
|
1601
|
-
// "Hide column"
|
|
1602
|
-
hideColumn: "Kolom verbergen",
|
|
1603
|
-
// "Show column"
|
|
1604
|
-
showColumn: "Toon kolom",
|
|
1605
|
-
// "Make column private"
|
|
1606
|
-
makePrivateColumn: "Kolom privé maken",
|
|
1607
|
-
// "Make column public"
|
|
1608
|
-
makePublicColumn: "Maak kolom openbaar",
|
|
1609
|
-
// "Move to Detail"
|
|
1610
|
-
moveToDetail: "Ga naar detail",
|
|
1611
|
-
// "Show as Column"
|
|
1612
|
-
showAsColumn: "Weergeven als kolom",
|
|
1613
|
-
// "Search..."
|
|
1614
|
-
filterPlaceholder: "Zoeken...",
|
|
1615
|
-
// "Remove rows"
|
|
1616
|
-
removeRows: "Verwijder rijen",
|
|
1617
|
-
// "Show"
|
|
1618
|
-
showLabel: "Tonen",
|
|
1619
|
-
// "entries"
|
|
1620
|
-
entriesLabel: "inzendingen",
|
|
1621
|
-
// "Texts in table"
|
|
1622
|
-
visualizer_text: "Teksten in tabel",
|
|
1623
|
-
// "Wordcloud"
|
|
1624
|
-
visualizer_wordcloud: "Wordcloud",
|
|
1625
|
-
// "Histogram"
|
|
1626
|
-
visualizer_histogram: "Histogram",
|
|
1627
|
-
// "Average"
|
|
1628
|
-
visualizer_number: "Gemiddeld",
|
|
1629
|
-
// "Table"
|
|
1630
|
-
visualizer_choices: "Tabel",
|
|
1631
|
-
// "Chart"
|
|
1632
|
-
visualizer_selectBase: "Grafiek",
|
|
1633
|
-
// [Auto-translated] "Chart"
|
|
1634
|
-
visualizer_matrix: "Zeekaart",
|
|
1635
|
-
// [Auto-translated] "Bar"
|
|
1636
|
-
chartType_bar: "Bar",
|
|
1637
|
-
// "Vertical Bar"
|
|
1638
|
-
chartType_vbar: "Staafdiagram",
|
|
1639
|
-
// "Stacked Bar"
|
|
1640
|
-
chartType_stackedbar: "Staafdiagram (gestapeld)",
|
|
1641
|
-
// "Doughnut"
|
|
1642
|
-
chartType_doughnut: "Donut",
|
|
1643
|
-
// "Pie"
|
|
1644
|
-
chartType_pie: "Cirkeldiagram",
|
|
1645
|
-
// "Scatter"
|
|
1646
|
-
chartType_scatter: "Spreidingsdiagram",
|
|
1647
|
-
// "Gauge"
|
|
1648
|
-
chartType_gauge: "Meterdiagram",
|
|
1649
|
-
// "Bullet"
|
|
1650
|
-
chartType_bullet: "Kogelgrafiek",
|
|
1651
|
-
// [Auto-translated] "Line"
|
|
1652
|
-
chartType_line: "Lijn",
|
|
1653
|
-
// [Auto-translated] "Radar"
|
|
1654
|
-
chartType_radar: "Radar",
|
|
1655
|
-
// "Hide"
|
|
1656
|
-
hideButton: "Verbergen",
|
|
1657
|
-
// "Make private"
|
|
1658
|
-
makePrivateButton: "Maak prive",
|
|
1659
|
-
// "Make public"
|
|
1660
|
-
makePublicButton: "Openbaar maken",
|
|
1661
|
-
// "Show"
|
|
1662
|
-
showButton: "Tonen",
|
|
1663
|
-
// "Filter"
|
|
1664
|
-
filter: "Filter",
|
|
1665
|
-
// "Reset Filter"
|
|
1666
|
-
resetFilter: "Filter resetten",
|
|
1667
|
-
// "Change Locale"
|
|
1668
|
-
changeLocale: "Wijzig de landinstelling",
|
|
1669
|
-
// "Clear"
|
|
1670
|
-
clearButton: "Wissen",
|
|
1671
|
-
// "Choose question to show..."
|
|
1672
|
-
addElement: "Kies een vraag om weer te geven ...",
|
|
1673
|
-
// "Default Order"
|
|
1674
|
-
defaultOrder: "Standaardvolgorde",
|
|
1675
|
-
// "Ascending"
|
|
1676
|
-
ascOrder: "Oplopend",
|
|
1677
|
-
// "Descending"
|
|
1678
|
-
descOrder: "Aflopend",
|
|
1679
|
-
// "Show minor columns"
|
|
1680
|
-
showMinorColumns: "Toon kleine kolommen",
|
|
1681
|
-
// [Auto-translated] "Actions"
|
|
1682
|
-
actionsColumn: "Acties",
|
|
1683
|
-
// "Other items and comments"
|
|
1684
|
-
otherCommentTitle: "Andere items en opmerkingen",
|
|
1685
|
-
// "Show percentages"
|
|
1686
|
-
showPercentages: "Percentages weergeven",
|
|
1687
|
-
// "Hide percentages"
|
|
1688
|
-
hidePercentages: "Verberg percentages",
|
|
1689
|
-
// "PDF"
|
|
1690
|
-
pdfDownloadCaption: "PDF",
|
|
1691
|
-
// "Excel"
|
|
1692
|
-
xlsxDownloadCaption: "Excel",
|
|
1693
|
-
// "CSV"
|
|
1694
|
-
csvDownloadCaption: "CSV",
|
|
1695
|
-
// "Download plot as a PNG file"
|
|
1696
|
-
saveDiagramAsPNG: "Download plot als PNG",
|
|
1697
|
-
// "Hide empty answers"
|
|
1698
|
-
hideEmptyAnswers: "Verberg lege antwoorden",
|
|
1699
|
-
// "Show empty answers"
|
|
1700
|
-
showEmptyAnswers: "Toon lege antwoorden",
|
|
1701
|
-
// "All answers"
|
|
1702
|
-
"topNValueText-1": "Alle antwoorden",
|
|
1703
|
-
// "Top 5 answers"
|
|
1704
|
-
topNValueText5: "Top 5 antwoorden",
|
|
1705
|
-
// "Top 10 answers"
|
|
1706
|
-
topNValueText10: "Top 10 antwoorden",
|
|
1707
|
-
// "Top 20 answers"
|
|
1708
|
-
topNValueText20: "Top 20 antwoorden",
|
|
1709
|
-
// "Hide missing answers"
|
|
1710
|
-
hideMissingAnswers: "Ontbrekende antwoorden verbergen",
|
|
1711
|
-
// "Show missing answers"
|
|
1712
|
-
showMissingAnswers: "Ontbrekende antwoorden weergeven",
|
|
1713
|
-
// "Missing answers"
|
|
1714
|
-
missingAnswersLabel: "Ontbrekende antwoorden",
|
|
1715
|
-
// "This question type is not visualized yet"
|
|
1716
|
-
noVisualizerForQuestion: "Dit vraagtype is nog niet gevisualiseerd",
|
|
1717
|
-
// "There are no results yet"
|
|
1718
|
-
noResults: "Er zijn nog geen resultaten",
|
|
1719
|
-
// "Per Values"
|
|
1720
|
-
showPerValues: "Per waarden",
|
|
1721
|
-
// "Per Columns"
|
|
1722
|
-
showPerColumns: "Per Kolommen",
|
|
1723
|
-
// "Answer"
|
|
1724
|
-
answer: "Antwoorden",
|
|
1725
|
-
// "Correct answer: "
|
|
1726
|
-
correctAnswer: "Goed antwoord: ",
|
|
1727
|
-
// "Percent"
|
|
1728
|
-
percent: "Procent",
|
|
1729
|
-
// [Auto-translated] "Percentage"
|
|
1730
|
-
percentage: "Percentage",
|
|
1731
|
-
// [Auto-translated] "Chart"
|
|
1732
|
-
statistics_chart: "Zeekaart",
|
|
1733
|
-
// "Responses"
|
|
1734
|
-
responses: "Reacties",
|
|
1735
|
-
// [Auto-translated] "NPS"
|
|
1736
|
-
visualizer_nps: "NPS",
|
|
1737
|
-
// [Auto-translated] "Chart"
|
|
1738
|
-
visualizer_boolean: "Zeekaart",
|
|
1739
|
-
// [Auto-translated] "Table"
|
|
1740
|
-
visualizer_options: "Tafel",
|
|
1741
|
-
// [Auto-translated] "NPS"
|
|
1742
|
-
npsScore: "NPS",
|
|
1743
|
-
// [Auto-translated] "Promoters"
|
|
1744
|
-
npsPromoters: "Initiatiefnemers",
|
|
1745
|
-
// [Auto-translated] "Passives"
|
|
1746
|
-
npsPassives: "Passief personeel",
|
|
1747
|
-
// [Auto-translated] "Detractors"
|
|
1748
|
-
npsDetractors: "Tegenstanders",
|
|
1749
|
-
// [Auto-translated] "Category (X Axis):"
|
|
1750
|
-
axisXSelectorTitle: "Categorie (X-as):",
|
|
1751
|
-
// [Auto-translated] "Legend (Series):"
|
|
1752
|
-
axisYSelectorTitle: "Legende (serie):",
|
|
1753
|
-
// [Auto-translated] "Segments:"
|
|
1754
|
-
axisXAlternativeSelectorTitle: "Segmenten:",
|
|
1755
|
-
// [Auto-translated] "Groups:"
|
|
1756
|
-
axisYAlternativeSelectorTitle: "Groepen:",
|
|
1757
|
-
// [Auto-translated] "Not selected"
|
|
1758
|
-
notSelected: "Niet geselecteerd",
|
|
1759
|
-
// [Auto-translated] "Default"
|
|
1760
|
-
intervalMode_default: "Verstek",
|
|
1761
|
-
// [Auto-translated] "Decades"
|
|
1762
|
-
intervalMode_decades: "Decennia",
|
|
1763
|
-
// [Auto-translated] "Years"
|
|
1764
|
-
intervalMode_years: "Jaren",
|
|
1765
|
-
// [Auto-translated] "Quarters"
|
|
1766
|
-
intervalMode_quarters: "Vertrekken",
|
|
1767
|
-
// [Auto-translated] "Months"
|
|
1768
|
-
intervalMode_months: "Maanden",
|
|
1769
|
-
// [Auto-translated] "Days"
|
|
1770
|
-
intervalMode_days: "Dagen",
|
|
1771
|
-
// [Auto-translated] "Custom"
|
|
1772
|
-
intervalMode_custom: "Gewoonte",
|
|
1773
|
-
// [Auto-translated] "Auto"
|
|
1774
|
-
intervalMode_auto: "Auto",
|
|
1775
|
-
// [Auto-translated] "Intervals:"
|
|
1776
|
-
intervalModeTitle: "Intervallen:",
|
|
1777
|
-
// [Auto-translated] "Show individual values"
|
|
1778
|
-
noRunningTotals: "Toon individuele waarden",
|
|
1779
|
-
// [Auto-translated] "Show running totals"
|
|
1780
|
-
runningTotals: "Toon lopende totalen",
|
|
1781
|
-
// [Auto-translated] "Compare periods"
|
|
1782
|
-
groupDateSeries: "Vergelijk periodes",
|
|
1783
|
-
// [Auto-translated] "View timeline"
|
|
1784
|
-
ungroupDateSeries: "Tijdlijn bekijken",
|
|
1785
|
-
// [Auto-translated] "None"
|
|
1786
|
-
noneAggregateText: "Geen",
|
|
1787
|
-
// [Auto-translated] "Aggregate:"
|
|
1788
|
-
selectAggregateText: "Aggregaat:",
|
|
1789
|
-
// [Auto-translated] "Year ends with"
|
|
1790
|
-
groupedYearsAxisTitle: "Het jaar eindigt met"
|
|
1791
|
-
};
|
|
1792
|
-
setupLocale({ localeCode: "nl", strings: dutchStrings, nativeName: "Nederlands" });
|
|
1793
|
-
|
|
1794
|
-
var spanishStrings = {
|
|
1795
|
-
// "Group By Me"
|
|
1796
|
-
groupButton: "Grupo Por Mí",
|
|
1797
|
-
// "Ungroup By Me"
|
|
1798
|
-
ungroupButton: "Desagrupar por mí",
|
|
1799
|
-
// "Select Me"
|
|
1800
|
-
selectButton: "Seleccionarme",
|
|
1801
|
-
// "Hide column"
|
|
1802
|
-
hideColumn: "Ocultar columna",
|
|
1803
|
-
// "Show column"
|
|
1804
|
-
showColumn: "Mostrar columna",
|
|
1805
|
-
// "Make column private"
|
|
1806
|
-
makePrivateColumn: "Hacer que la columna sea privada",
|
|
1807
|
-
// "Make column public"
|
|
1808
|
-
makePublicColumn: "Hacer pública la columna",
|
|
1809
|
-
// "Move to Detail"
|
|
1810
|
-
moveToDetail: "Mover al detalle",
|
|
1811
|
-
// "Show as Column"
|
|
1812
|
-
showAsColumn: "Mostrar como columna",
|
|
1813
|
-
// "Search..."
|
|
1814
|
-
filterPlaceholder: "Buscar ...",
|
|
1815
|
-
// "Remove rows"
|
|
1816
|
-
removeRows: "Eliminar filas",
|
|
1817
|
-
// "Show"
|
|
1818
|
-
showLabel: "Mostrar",
|
|
1819
|
-
// "entries"
|
|
1820
|
-
entriesLabel: "Entradas",
|
|
1821
|
-
// "Texts in table"
|
|
1822
|
-
visualizer_text: "Textos en tabla",
|
|
1823
|
-
// "Wordcloud"
|
|
1824
|
-
visualizer_wordcloud: "Wordcloud",
|
|
1825
|
-
// "Histogram"
|
|
1826
|
-
visualizer_histogram: "Histograma",
|
|
1827
|
-
// "Average"
|
|
1828
|
-
visualizer_number: "Promedio",
|
|
1829
|
-
// "Table"
|
|
1830
|
-
visualizer_choices: "Mesa",
|
|
1831
|
-
// "Chart"
|
|
1832
|
-
visualizer_selectBase: "Gráfico",
|
|
1833
|
-
// [Auto-translated] "Chart"
|
|
1834
|
-
visualizer_matrix: "Gráfico",
|
|
1835
|
-
// [Auto-translated] "Bar"
|
|
1836
|
-
chartType_bar: "Barra",
|
|
1837
|
-
// "Vertical Bar"
|
|
1838
|
-
chartType_vbar: "Barra vertical",
|
|
1839
|
-
// "Stacked Bar"
|
|
1840
|
-
chartType_stackedbar: "Barra apilada",
|
|
1841
|
-
// "Doughnut"
|
|
1842
|
-
chartType_doughnut: "Donut",
|
|
1843
|
-
// "Pie"
|
|
1844
|
-
chartType_pie: "Pie",
|
|
1845
|
-
// "Scatter"
|
|
1846
|
-
chartType_scatter: "Dispersión",
|
|
1847
|
-
// "Gauge"
|
|
1848
|
-
chartType_gauge: "Gauge",
|
|
1849
|
-
// "Bullet"
|
|
1850
|
-
chartType_bullet: "Bullet",
|
|
1851
|
-
// [Auto-translated] "Line"
|
|
1852
|
-
chartType_line: "Línea",
|
|
1853
|
-
// [Auto-translated] "Radar"
|
|
1854
|
-
chartType_radar: "Radar",
|
|
1855
|
-
// "Hide"
|
|
1856
|
-
hideButton: "Ocultar",
|
|
1857
|
-
// "Make private"
|
|
1858
|
-
makePrivateButton: "Hacer privado",
|
|
1859
|
-
// "Make public"
|
|
1860
|
-
makePublicButton: "Hacer público",
|
|
1861
|
-
// "Show"
|
|
1862
|
-
showButton: "Mostrar",
|
|
1863
|
-
// "Filter"
|
|
1864
|
-
filter: "Filtro",
|
|
1865
|
-
// "Reset Filter"
|
|
1866
|
-
resetFilter: "Restablecer filtro",
|
|
1867
|
-
// "Change Locale"
|
|
1868
|
-
changeLocale: "Cambiar configuración regional",
|
|
1869
|
-
// "Clear"
|
|
1870
|
-
clearButton: "Borrar",
|
|
1871
|
-
// "Choose question to show..."
|
|
1872
|
-
addElement: "Elija la pregunta para mostrar ...",
|
|
1873
|
-
// "Default Order"
|
|
1874
|
-
defaultOrder: "Orden predeterminado",
|
|
1875
|
-
// "Ascending"
|
|
1876
|
-
ascOrder: "Ascendente",
|
|
1877
|
-
// "Descending"
|
|
1878
|
-
descOrder: "Descendente",
|
|
1879
|
-
// "Show minor columns"
|
|
1880
|
-
showMinorColumns: "Mostrar columnas secundarias",
|
|
1881
|
-
// [Auto-translated] "Actions"
|
|
1882
|
-
actionsColumn: "Acciones",
|
|
1883
|
-
// "Other items and comments"
|
|
1884
|
-
otherCommentTitle: "Otros elementos y comentarios",
|
|
1885
|
-
// "Show percentages"
|
|
1886
|
-
showPercentages: "Mostrar porcentajes",
|
|
1887
|
-
// "Hide percentages"
|
|
1888
|
-
hidePercentages: "Ocultar porcentajes",
|
|
1889
|
-
// "PDF"
|
|
1890
|
-
pdfDownloadCaption: "PDF",
|
|
1891
|
-
// "Excel"
|
|
1892
|
-
xlsxDownloadCaption: "Excel",
|
|
1893
|
-
// "CSV"
|
|
1894
|
-
csvDownloadCaption: "CSV",
|
|
1895
|
-
// "Download plot as a PNG file"
|
|
1896
|
-
saveDiagramAsPNG: "Descargar el gráfico como png",
|
|
1897
|
-
// "Hide empty answers"
|
|
1898
|
-
hideEmptyAnswers: "Ocultar respuestas vacías",
|
|
1899
|
-
// "Show empty answers"
|
|
1900
|
-
showEmptyAnswers: "Mostrar respuestas vacías",
|
|
1901
|
-
// "All answers"
|
|
1902
|
-
"topNValueText-1": "Todas las respuestas",
|
|
1903
|
-
// "Top 5 answers"
|
|
1904
|
-
topNValueText5: "Las 5 respuestas principales",
|
|
1905
|
-
// "Top 10 answers"
|
|
1906
|
-
topNValueText10: "Las 10 respuestas principales",
|
|
1907
|
-
// "Top 20 answers"
|
|
1908
|
-
topNValueText20: "20 respuestas principales",
|
|
1909
|
-
// "Hide missing answers"
|
|
1910
|
-
hideMissingAnswers: "Ocultar las respuestas que faltan",
|
|
1911
|
-
// "Show missing answers"
|
|
1912
|
-
showMissingAnswers: "Mostrar las respuestas que faltan",
|
|
1913
|
-
// "Missing answers"
|
|
1914
|
-
missingAnswersLabel: "Respuestas faltantes",
|
|
1915
|
-
// "This question type is not visualized yet"
|
|
1916
|
-
noVisualizerForQuestion: "Este tipo de pregunta aún no se visualiza",
|
|
1917
|
-
// "There are no results yet"
|
|
1918
|
-
noResults: "Aún no hay resultados",
|
|
1919
|
-
// "Per Values"
|
|
1920
|
-
showPerValues: "Por valores",
|
|
1921
|
-
// "Per Columns"
|
|
1922
|
-
showPerColumns: "Por columnas",
|
|
1923
|
-
// "Answer"
|
|
1924
|
-
answer: "Respuesta",
|
|
1925
|
-
// "Correct answer: "
|
|
1926
|
-
correctAnswer: "Respuesta correcta: ",
|
|
1927
|
-
// "Percent"
|
|
1928
|
-
percent: "Por ciento",
|
|
1929
|
-
// [Auto-translated] "Percentage"
|
|
1930
|
-
percentage: "Porcentaje",
|
|
1931
|
-
// [Auto-translated] "Chart"
|
|
1932
|
-
statistics_chart: "Gráfico",
|
|
1933
|
-
// "Responses"
|
|
1934
|
-
responses: "Respuestas",
|
|
1935
|
-
// [Auto-translated] "NPS"
|
|
1936
|
-
visualizer_nps: "NPS",
|
|
1937
|
-
// [Auto-translated] "Chart"
|
|
1938
|
-
visualizer_boolean: "Gráfico",
|
|
1939
|
-
// [Auto-translated] "Table"
|
|
1940
|
-
visualizer_options: "Mesa",
|
|
1941
|
-
// [Auto-translated] "NPS"
|
|
1942
|
-
npsScore: "NPS",
|
|
1943
|
-
// [Auto-translated] "Promoters"
|
|
1944
|
-
npsPromoters: "Promotores",
|
|
1945
|
-
// [Auto-translated] "Passives"
|
|
1946
|
-
npsPassives: "Pasivos",
|
|
1947
|
-
// [Auto-translated] "Detractors"
|
|
1948
|
-
npsDetractors: "Detractores",
|
|
1949
|
-
// [Auto-translated] "Category (X Axis):"
|
|
1950
|
-
axisXSelectorTitle: "Categoría (eje X):",
|
|
1951
|
-
// [Auto-translated] "Legend (Series):"
|
|
1952
|
-
axisYSelectorTitle: "Leyenda (Serie):",
|
|
1953
|
-
// [Auto-translated] "Segments:"
|
|
1954
|
-
axisXAlternativeSelectorTitle: "Segmentos:",
|
|
1955
|
-
// [Auto-translated] "Groups:"
|
|
1956
|
-
axisYAlternativeSelectorTitle: "Grupos:",
|
|
1957
|
-
// [Auto-translated] "Not selected"
|
|
1958
|
-
notSelected: "No seleccionado",
|
|
1959
|
-
// [Auto-translated] "Default"
|
|
1960
|
-
intervalMode_default: "Predeterminado",
|
|
1961
|
-
// [Auto-translated] "Decades"
|
|
1962
|
-
intervalMode_decades: "Décadas",
|
|
1963
|
-
// [Auto-translated] "Years"
|
|
1964
|
-
intervalMode_years: "Años",
|
|
1965
|
-
// [Auto-translated] "Quarters"
|
|
1966
|
-
intervalMode_quarters: "Alojamiento",
|
|
1967
|
-
// [Auto-translated] "Months"
|
|
1968
|
-
intervalMode_months: "Meses",
|
|
1969
|
-
// [Auto-translated] "Days"
|
|
1970
|
-
intervalMode_days: "Días",
|
|
1971
|
-
// [Auto-translated] "Custom"
|
|
1972
|
-
intervalMode_custom: "Costumbre",
|
|
1973
|
-
// [Auto-translated] "Auto"
|
|
1974
|
-
intervalMode_auto: "Automático",
|
|
1975
|
-
// [Auto-translated] "Intervals:"
|
|
1976
|
-
intervalModeTitle: "Intervalos:",
|
|
1977
|
-
// [Auto-translated] "Show individual values"
|
|
1978
|
-
noRunningTotals: "Mostrar valores individuales",
|
|
1979
|
-
// [Auto-translated] "Show running totals"
|
|
1980
|
-
runningTotals: "Mostrar totales acumulados",
|
|
1981
|
-
// [Auto-translated] "Compare periods"
|
|
1982
|
-
groupDateSeries: "Comparar períodos",
|
|
1983
|
-
// [Auto-translated] "View timeline"
|
|
1984
|
-
ungroupDateSeries: "Ver cronograma",
|
|
1985
|
-
// [Auto-translated] "None"
|
|
1986
|
-
noneAggregateText: "Ninguno",
|
|
1987
|
-
// [Auto-translated] "Aggregate:"
|
|
1988
|
-
selectAggregateText: "Agregado:",
|
|
1989
|
-
// [Auto-translated] "Year ends with"
|
|
1990
|
-
groupedYearsAxisTitle: "El año termina con"
|
|
1991
|
-
};
|
|
1992
|
-
setupLocale({ localeCode: "es", strings: spanishStrings, nativeName: "Español" });
|
|
1993
|
-
|
|
1994
|
-
var italianStrings = {
|
|
1995
|
-
// "Group By Me"
|
|
1996
|
-
groupButton: "Raggruppa",
|
|
1997
|
-
// "Ungroup By Me"
|
|
1998
|
-
ungroupButton: "Dividi",
|
|
1999
|
-
// "Select Me"
|
|
2000
|
-
selectButton: "Selezionami",
|
|
2001
|
-
// "Hide column"
|
|
2002
|
-
hideColumn: "Nascondi colonna",
|
|
2003
|
-
// "Show column"
|
|
2004
|
-
showColumn: "Mostra colonna",
|
|
2005
|
-
// "Make column private"
|
|
2006
|
-
makePrivateColumn: "Rendi la colonna privata",
|
|
2007
|
-
// "Make column public"
|
|
2008
|
-
makePublicColumn: "Rendi la colonna pubblica",
|
|
2009
|
-
// "Move to Detail"
|
|
2010
|
-
moveToDetail: "Sposta in Dettaglio",
|
|
2011
|
-
// "Show as Column"
|
|
2012
|
-
showAsColumn: "Mostra come Colonna",
|
|
2013
|
-
// "Search..."
|
|
2014
|
-
filterPlaceholder: "Cerca...",
|
|
2015
|
-
// "Remove rows"
|
|
2016
|
-
removeRows: "Rimuovi righe",
|
|
2017
|
-
// "Show"
|
|
2018
|
-
showLabel: "Mostra",
|
|
2019
|
-
// "entries"
|
|
2020
|
-
entriesLabel: "voci",
|
|
2021
|
-
// "Texts in table"
|
|
2022
|
-
visualizer_text: "Parole in tabella",
|
|
2023
|
-
// "Wordcloud"
|
|
2024
|
-
visualizer_wordcloud: "Nuvola di parole",
|
|
2025
|
-
// "Histogram"
|
|
2026
|
-
visualizer_histogram: "Istogramma",
|
|
2027
|
-
// "Average"
|
|
2028
|
-
visualizer_number: "Media",
|
|
2029
|
-
// "Table"
|
|
2030
|
-
visualizer_choices: "Tabella",
|
|
2031
|
-
// "Chart"
|
|
2032
|
-
visualizer_selectBase: "Grafico",
|
|
2033
|
-
// [Auto-translated] "Chart"
|
|
2034
|
-
visualizer_matrix: "Tabella",
|
|
2035
|
-
// [Auto-translated] "Bar"
|
|
2036
|
-
chartType_bar: "Bar",
|
|
2037
|
-
// "Vertical Bar"
|
|
2038
|
-
chartType_vbar: "Grafico a barre verticali",
|
|
2039
|
-
// "Stacked Bar"
|
|
2040
|
-
chartType_stackedbar: "Grafico a barre sovrapposte",
|
|
2041
|
-
// "Doughnut"
|
|
2042
|
-
chartType_doughnut: "Grafico a ciambella",
|
|
2043
|
-
// "Pie"
|
|
2044
|
-
chartType_pie: "Grafico a torta",
|
|
2045
|
-
// "Scatter"
|
|
2046
|
-
chartType_scatter: "Grafico a dispersione",
|
|
2047
|
-
// "Gauge"
|
|
2048
|
-
chartType_gauge: "Grafico Gauge",
|
|
2049
|
-
// "Bullet"
|
|
2050
|
-
chartType_bullet: "Punto",
|
|
2051
|
-
// [Auto-translated] "Line"
|
|
2052
|
-
chartType_line: "Linea",
|
|
2053
|
-
// [Auto-translated] "Radar"
|
|
2054
|
-
chartType_radar: "Radar",
|
|
2055
|
-
// "Hide"
|
|
2056
|
-
hideButton: "Nascondi",
|
|
2057
|
-
// "Make private"
|
|
2058
|
-
makePrivateButton: "Rendi privato",
|
|
2059
|
-
// "Make public"
|
|
2060
|
-
makePublicButton: "Rendi pubblico",
|
|
2061
|
-
// "Show"
|
|
2062
|
-
showButton: "Mostra",
|
|
2063
|
-
// "Filter"
|
|
2064
|
-
filter: "Filtro",
|
|
2065
|
-
// "Reset Filter"
|
|
2066
|
-
resetFilter: "Cancella filtro",
|
|
2067
|
-
// "Change Locale"
|
|
2068
|
-
changeLocale: "Cambia lingua",
|
|
2069
|
-
// "Clear"
|
|
2070
|
-
clearButton: "Cancella",
|
|
2071
|
-
// "Choose question to show..."
|
|
2072
|
-
addElement: "Scegli la domanda da mostrare...",
|
|
2073
|
-
// "Default Order"
|
|
2074
|
-
defaultOrder: "Ordine di Default",
|
|
2075
|
-
// "Ascending"
|
|
2076
|
-
ascOrder: "Ascendente",
|
|
2077
|
-
// "Descending"
|
|
2078
|
-
descOrder: "Discendente",
|
|
2079
|
-
// "Show minor columns"
|
|
2080
|
-
showMinorColumns: "Mostra colonne secondarie",
|
|
2081
|
-
// [Auto-translated] "Actions"
|
|
2082
|
-
actionsColumn: "Azioni",
|
|
2083
|
-
// "Other items and comments"
|
|
2084
|
-
otherCommentTitle: "Altri punti e commenti",
|
|
2085
|
-
// "Show percentages"
|
|
2086
|
-
showPercentages: "Mostra percentuali",
|
|
2087
|
-
// "Hide percentages"
|
|
2088
|
-
hidePercentages: "Nascondi percentuali",
|
|
2089
|
-
// "PDF"
|
|
2090
|
-
pdfDownloadCaption: "PDF",
|
|
2091
|
-
// "Excel"
|
|
2092
|
-
xlsxDownloadCaption: "Excel",
|
|
2093
|
-
// "CSV"
|
|
2094
|
-
csvDownloadCaption: "CSV",
|
|
2095
|
-
// "Download plot as a PNG file"
|
|
2096
|
-
saveDiagramAsPNG: "Scarica il grafico in formato png",
|
|
2097
|
-
// "Hide empty answers"
|
|
2098
|
-
hideEmptyAnswers: "Nascondi risposte vuote",
|
|
2099
|
-
// "Show empty answers"
|
|
2100
|
-
showEmptyAnswers: "Mostra risposte vuote",
|
|
2101
|
-
// "All answers"
|
|
2102
|
-
"topNValueText-1": "Tutte le risposte",
|
|
2103
|
-
// "Top 5 answers"
|
|
2104
|
-
topNValueText5: "Top 5 risposte",
|
|
2105
|
-
// "Top 10 answers"
|
|
2106
|
-
topNValueText10: "Top 10 risposte",
|
|
2107
|
-
// "Top 20 answers"
|
|
2108
|
-
topNValueText20: "Top 20 risposte",
|
|
2109
|
-
// "Hide missing answers"
|
|
2110
|
-
hideMissingAnswers: "Nascondi le risposte mancanti",
|
|
2111
|
-
// "Show missing answers"
|
|
2112
|
-
showMissingAnswers: "Mostra le risposte mancanti",
|
|
2113
|
-
// "Missing answers"
|
|
2114
|
-
missingAnswersLabel: "Risposte mancanti",
|
|
2115
|
-
// "This question type is not visualized yet"
|
|
2116
|
-
noVisualizerForQuestion: "Questo tipo di domanda non è ancora stato visualizzato",
|
|
2117
|
-
// "There are no results yet"
|
|
2118
|
-
noResults: "Non ci sono ancora risultati",
|
|
2119
|
-
// "Per Values"
|
|
2120
|
-
showPerValues: "Per Valori",
|
|
2121
|
-
// "Per Columns"
|
|
2122
|
-
showPerColumns: "Per Colonne",
|
|
2123
|
-
// "Answer"
|
|
2124
|
-
answer: "Risposta",
|
|
2125
|
-
// "Correct answer: "
|
|
2126
|
-
correctAnswer: "Risposta esatta: ",
|
|
2127
|
-
// "Percent"
|
|
2128
|
-
percent: "Percentuale",
|
|
2129
|
-
// [Auto-translated] "Percentage"
|
|
2130
|
-
percentage: "Percentuale",
|
|
2131
|
-
// [Auto-translated] "Chart"
|
|
2132
|
-
statistics_chart: "Tabella",
|
|
2133
|
-
// "Responses"
|
|
2134
|
-
responses: "Risposte",
|
|
2135
|
-
// [Auto-translated] "NPS"
|
|
2136
|
-
visualizer_nps: "Rete nazionale di dati",
|
|
2137
|
-
// [Auto-translated] "Chart"
|
|
2138
|
-
visualizer_boolean: "Tabella",
|
|
2139
|
-
// [Auto-translated] "Table"
|
|
2140
|
-
visualizer_options: "Tavolo",
|
|
2141
|
-
// [Auto-translated] "NPS"
|
|
2142
|
-
npsScore: "Rete nazionale di dati",
|
|
2143
|
-
// [Auto-translated] "Promoters"
|
|
2144
|
-
npsPromoters: "Promotori",
|
|
2145
|
-
// [Auto-translated] "Passives"
|
|
2146
|
-
npsPassives: "Passivi",
|
|
2147
|
-
// [Auto-translated] "Detractors"
|
|
2148
|
-
npsDetractors: "Detrattori",
|
|
2149
|
-
// [Auto-translated] "Category (X Axis):"
|
|
2150
|
-
axisXSelectorTitle: "Categoria (asse X):",
|
|
2151
|
-
// [Auto-translated] "Legend (Series):"
|
|
2152
|
-
axisYSelectorTitle: "Leggenda (serie):",
|
|
2153
|
-
// [Auto-translated] "Segments:"
|
|
2154
|
-
axisXAlternativeSelectorTitle: "Segmenti:",
|
|
2155
|
-
// [Auto-translated] "Groups:"
|
|
2156
|
-
axisYAlternativeSelectorTitle: "Gruppi:",
|
|
2157
|
-
// [Auto-translated] "Not selected"
|
|
2158
|
-
notSelected: "Non selezionato",
|
|
2159
|
-
// [Auto-translated] "Default"
|
|
2160
|
-
intervalMode_default: "Default",
|
|
2161
|
-
// [Auto-translated] "Decades"
|
|
2162
|
-
intervalMode_decades: "Decenni",
|
|
2163
|
-
// [Auto-translated] "Years"
|
|
2164
|
-
intervalMode_years: "Anni",
|
|
2165
|
-
// [Auto-translated] "Quarters"
|
|
2166
|
-
intervalMode_quarters: "Quarti",
|
|
2167
|
-
// [Auto-translated] "Months"
|
|
2168
|
-
intervalMode_months: "Mesi",
|
|
2169
|
-
// [Auto-translated] "Days"
|
|
2170
|
-
intervalMode_days: "Giorni",
|
|
2171
|
-
// [Auto-translated] "Custom"
|
|
2172
|
-
intervalMode_custom: "Costume",
|
|
2173
|
-
// [Auto-translated] "Auto"
|
|
2174
|
-
intervalMode_auto: "Automatico",
|
|
2175
|
-
// [Auto-translated] "Intervals:"
|
|
2176
|
-
intervalModeTitle: "Intervalli:",
|
|
2177
|
-
// [Auto-translated] "Show individual values"
|
|
2178
|
-
noRunningTotals: "Mostra i singoli valori",
|
|
2179
|
-
// [Auto-translated] "Show running totals"
|
|
2180
|
-
runningTotals: "Mostra totali parziali",
|
|
2181
|
-
// [Auto-translated] "Compare periods"
|
|
2182
|
-
groupDateSeries: "Confronta i periodi",
|
|
2183
|
-
// [Auto-translated] "View timeline"
|
|
2184
|
-
ungroupDateSeries: "Visualizza la timeline",
|
|
2185
|
-
// [Auto-translated] "None"
|
|
2186
|
-
noneAggregateText: "Nessuno",
|
|
2187
|
-
// [Auto-translated] "Aggregate:"
|
|
2188
|
-
selectAggregateText: "Aggregato:",
|
|
2189
|
-
// [Auto-translated] "Year ends with"
|
|
2190
|
-
groupedYearsAxisTitle: "L'anno si chiude con"
|
|
2191
|
-
};
|
|
2192
|
-
setupLocale({ localeCode: "it", strings: italianStrings, nativeName: "Italiano" });
|
|
2193
|
-
|
|
2194
|
-
var arabicStrings = {
|
|
2195
|
-
// "Group By Me"
|
|
2196
|
-
groupButton: "زرار المجموعة",
|
|
2197
|
-
// "Ungroup By Me"
|
|
2198
|
-
ungroupButton: "تم التحديث من خلالى",
|
|
2199
|
-
// "Select Me"
|
|
2200
|
-
selectButton: "اختر",
|
|
2201
|
-
// "Hide column"
|
|
2202
|
-
hideColumn: "اخفاء العمود",
|
|
2203
|
-
// "Show column"
|
|
2204
|
-
showColumn: "اظهار",
|
|
2205
|
-
// "Make column private"
|
|
2206
|
-
makePrivateColumn: "أجعل العمود خاص",
|
|
2207
|
-
// "Make column public"
|
|
2208
|
-
makePublicColumn: "أجعل العمود عام",
|
|
2209
|
-
// "Move to Detail"
|
|
2210
|
-
moveToDetail: "انتقل إلى التفاصيل",
|
|
2211
|
-
// "Show as Column"
|
|
2212
|
-
showAsColumn: "إظهار كعمود",
|
|
2213
|
-
// "Search..."
|
|
2214
|
-
filterPlaceholder: "بحث...",
|
|
2215
|
-
// "Remove rows"
|
|
2216
|
-
removeRows: "حذف",
|
|
2217
|
-
// "Show"
|
|
2218
|
-
showLabel: "اظهار",
|
|
2219
|
-
// "entries"
|
|
2220
|
-
entriesLabel: "مدخلات",
|
|
2221
|
-
// "Texts in table"
|
|
2222
|
-
visualizer_text: "جداول",
|
|
2223
|
-
// "Wordcloud"
|
|
2224
|
-
visualizer_wordcloud: "كلمات",
|
|
2225
|
-
// "Histogram"
|
|
2226
|
-
visualizer_histogram: "الرسم البياني",
|
|
2227
|
-
// "Average"
|
|
2228
|
-
visualizer_number: "متوسط",
|
|
2229
|
-
// "Table"
|
|
2230
|
-
visualizer_choices: "جدول",
|
|
2231
|
-
// "Chart"
|
|
2232
|
-
visualizer_selectBase: "رسم بياني",
|
|
2233
|
-
// [Auto-translated] "Chart"
|
|
2234
|
-
visualizer_matrix: "جدول",
|
|
2235
|
-
// [Auto-translated] "Bar"
|
|
2236
|
-
chartType_bar: "بار",
|
|
2237
|
-
// "Vertical Bar"
|
|
2238
|
-
chartType_vbar: "شريط عمودي",
|
|
2239
|
-
// "Stacked Bar"
|
|
2240
|
-
chartType_stackedbar: "شريط مكدس",
|
|
2241
|
-
// "Doughnut"
|
|
2242
|
-
chartType_doughnut: "مخطط حلقي",
|
|
2243
|
-
// "Pie"
|
|
2244
|
-
chartType_pie: "مخطط دائري",
|
|
2245
|
-
// "Scatter"
|
|
2246
|
-
chartType_scatter: "مخطط التشتت",
|
|
2247
|
-
// "Gauge"
|
|
2248
|
-
chartType_gauge: "مخطط القياس",
|
|
2249
|
-
// "Bullet"
|
|
2250
|
-
chartType_bullet: "مخطط نقطي",
|
|
2251
|
-
// [Auto-translated] "Line"
|
|
2252
|
-
chartType_line: "سطر",
|
|
2253
|
-
// [Auto-translated] "Radar"
|
|
2254
|
-
chartType_radar: "رادار",
|
|
2255
|
-
// "Hide"
|
|
2256
|
-
hideButton: "اخفاء",
|
|
2257
|
-
// "Make private"
|
|
2258
|
-
makePrivateButton: "أجعل خاص",
|
|
2259
|
-
// "Make public"
|
|
2260
|
-
makePublicButton: "أجعل عام",
|
|
2261
|
-
// "Show"
|
|
2262
|
-
showButton: "اظهار",
|
|
2263
|
-
// "Filter"
|
|
2264
|
-
filter: "ترشح",
|
|
2265
|
-
// "Reset Filter"
|
|
2266
|
-
resetFilter: "إعادة تعيين",
|
|
2267
|
-
// "Change Locale"
|
|
2268
|
-
changeLocale: "تغيير اللغة",
|
|
2269
|
-
// "Clear"
|
|
2270
|
-
clearButton: "مسح",
|
|
2271
|
-
// "Choose question to show..."
|
|
2272
|
-
addElement: "اختر سؤالاً للعرض ...",
|
|
2273
|
-
// "Default Order"
|
|
2274
|
-
defaultOrder: "الترتيب الافتراضي",
|
|
2275
|
-
// "Ascending"
|
|
2276
|
-
ascOrder: "تصاعدى",
|
|
2277
|
-
// "Descending"
|
|
2278
|
-
descOrder: "تنازلى",
|
|
2279
|
-
// "Show minor columns"
|
|
2280
|
-
showMinorColumns: "إظهار الأعمدة الثانوية",
|
|
2281
|
-
// [Auto-translated] "Actions"
|
|
2282
|
-
actionsColumn: "الاجراءات",
|
|
2283
|
-
// "Other items and comments"
|
|
2284
|
-
otherCommentTitle: "بنود وتعليقات أخرى",
|
|
2285
|
-
// "Show percentages"
|
|
2286
|
-
showPercentages: "عرض النسب المئوية",
|
|
2287
|
-
// "Hide percentages"
|
|
2288
|
-
hidePercentages: "إخفاء النسب",
|
|
2289
|
-
// "PDF"
|
|
2290
|
-
pdfDownloadCaption: "PDF",
|
|
2291
|
-
// "Excel"
|
|
2292
|
-
xlsxDownloadCaption: "Excel",
|
|
2293
|
-
// "CSV"
|
|
2294
|
-
csvDownloadCaption: "CSV",
|
|
2295
|
-
// "Download plot as a PNG file"
|
|
2296
|
-
saveDiagramAsPNG: "تنزيل بصيغة png",
|
|
2297
|
-
// "Hide empty answers"
|
|
2298
|
-
hideEmptyAnswers: "إخفاء الإجابات الفارغة",
|
|
2299
|
-
// "Show empty answers"
|
|
2300
|
-
showEmptyAnswers: "إظهار الإجابات الفارغة",
|
|
2301
|
-
// "All answers"
|
|
2302
|
-
"topNValueText-1": "جميع الإجابات",
|
|
2303
|
-
// "Top 5 answers"
|
|
2304
|
-
topNValueText5: "أهم 5 إجابات",
|
|
2305
|
-
// "Top 10 answers"
|
|
2306
|
-
topNValueText10: "أفضل 10 إجابات",
|
|
2307
|
-
// "Top 20 answers"
|
|
2308
|
-
topNValueText20: "أفضل 20 إجابة",
|
|
2309
|
-
// "Hide missing answers"
|
|
2310
|
-
hideMissingAnswers: "إخفاء الإجابات المفقودة",
|
|
2311
|
-
// "Show missing answers"
|
|
2312
|
-
showMissingAnswers: "عرض الإجابات المفقودة",
|
|
2313
|
-
// "Missing answers"
|
|
2314
|
-
missingAnswersLabel: "أجوبة مفقودة",
|
|
2315
|
-
// "This question type is not visualized yet"
|
|
2316
|
-
noVisualizerForQuestion: "لم يتم العرض بعد",
|
|
2317
|
-
// "There are no results yet"
|
|
2318
|
-
noResults: "لا يوجد نتائج للعرض",
|
|
2319
|
-
// "Per Values"
|
|
2320
|
-
showPerValues: "لكل القيم",
|
|
2321
|
-
// "Per Columns"
|
|
2322
|
-
showPerColumns: "لكل الأعمدة",
|
|
2323
|
-
// "Answer"
|
|
2324
|
-
answer: "إجب",
|
|
2325
|
-
// "Correct answer: "
|
|
2326
|
-
correctAnswer: "الاجابة الصحيحة: ",
|
|
2327
|
-
// "Percent"
|
|
2328
|
-
percent: "النسبه المئويه",
|
|
2329
|
-
// [Auto-translated] "Percentage"
|
|
2330
|
-
percentage: "النسبه المئويه",
|
|
2331
|
-
// [Auto-translated] "Chart"
|
|
2332
|
-
statistics_chart: "جدول",
|
|
2333
|
-
// "Responses"
|
|
2334
|
-
responses: "الاستجابات",
|
|
2335
|
-
// [Auto-translated] "NPS"
|
|
2336
|
-
visualizer_nps: "NPS",
|
|
2337
|
-
// [Auto-translated] "Chart"
|
|
2338
|
-
visualizer_boolean: "جدول",
|
|
2339
|
-
// [Auto-translated] "Table"
|
|
2340
|
-
visualizer_options: "جدول",
|
|
2341
|
-
// [Auto-translated] "NPS"
|
|
2342
|
-
npsScore: "NPS",
|
|
2343
|
-
// [Auto-translated] "Promoters"
|
|
2344
|
-
npsPromoters: "المروجين",
|
|
2345
|
-
// [Auto-translated] "Passives"
|
|
2346
|
-
npsPassives: "سلبيات",
|
|
2347
|
-
// [Auto-translated] "Detractors"
|
|
2348
|
-
npsDetractors: "المنتقدين",
|
|
2349
|
-
// [Auto-translated] "Category (X Axis):"
|
|
2350
|
-
axisXSelectorTitle: "الفئة (المحور X):",
|
|
2351
|
-
// [Auto-translated] "Legend (Series):"
|
|
2352
|
-
axisYSelectorTitle: "أسطورة (سلسلة):",
|
|
2353
|
-
// [Auto-translated] "Segments:"
|
|
2354
|
-
axisXAlternativeSelectorTitle: "قطاعات:",
|
|
2355
|
-
// [Auto-translated] "Groups:"
|
|
2356
|
-
axisYAlternativeSelectorTitle: "المجموعات:",
|
|
2357
|
-
// [Auto-translated] "Not selected"
|
|
2358
|
-
notSelected: "غير محدد",
|
|
2359
|
-
// [Auto-translated] "Default"
|
|
2360
|
-
intervalMode_default: "افتراضي",
|
|
2361
|
-
// [Auto-translated] "Decades"
|
|
2362
|
-
intervalMode_decades: "عقود",
|
|
2363
|
-
// [Auto-translated] "Years"
|
|
2364
|
-
intervalMode_years: "اعوام",
|
|
2365
|
-
// [Auto-translated] "Quarters"
|
|
2366
|
-
intervalMode_quarters: "ارباع",
|
|
2367
|
-
// [Auto-translated] "Months"
|
|
2368
|
-
intervalMode_months: "أشهر",
|
|
2369
|
-
// [Auto-translated] "Days"
|
|
2370
|
-
intervalMode_days: "أيام",
|
|
2371
|
-
// [Auto-translated] "Custom"
|
|
2372
|
-
intervalMode_custom: "تقليد",
|
|
2373
|
-
// [Auto-translated] "Auto"
|
|
2374
|
-
intervalMode_auto: "تلقائي",
|
|
2375
|
-
// [Auto-translated] "Intervals:"
|
|
2376
|
-
intervalModeTitle: "فترات:",
|
|
2377
|
-
// [Auto-translated] "Show individual values"
|
|
2378
|
-
noRunningTotals: "إظهار القيم الفردية",
|
|
2379
|
-
// [Auto-translated] "Show running totals"
|
|
2380
|
-
runningTotals: "إظهار الإجماليات الجارية",
|
|
2381
|
-
// [Auto-translated] "Compare periods"
|
|
2382
|
-
groupDateSeries: "مقارنة الفترات",
|
|
2383
|
-
// [Auto-translated] "View timeline"
|
|
2384
|
-
ungroupDateSeries: "عرض الجدول الزمني",
|
|
2385
|
-
// [Auto-translated] "None"
|
|
2386
|
-
noneAggregateText: "اي",
|
|
2387
|
-
// [Auto-translated] "Aggregate:"
|
|
2388
|
-
selectAggregateText: "تجميع:",
|
|
2389
|
-
// [Auto-translated] "Year ends with"
|
|
2390
|
-
groupedYearsAxisTitle: "ينتهي العام ب"
|
|
2391
|
-
};
|
|
2392
|
-
setupLocale({ localeCode: "ar", strings: arabicStrings, nativeName: "العربية" });
|
|
2393
|
-
|
|
2394
|
-
var japaneseStrings = {
|
|
2395
|
-
// "Group By Me"
|
|
2396
|
-
groupButton: "グループ化",
|
|
2397
|
-
// "Ungroup By Me"
|
|
2398
|
-
ungroupButton: "グループ解除",
|
|
2399
|
-
// "Select Me"
|
|
2400
|
-
selectButton: "選択",
|
|
2401
|
-
// "Hide column"
|
|
2402
|
-
hideColumn: "列を非表示",
|
|
2403
|
-
// "Show column"
|
|
2404
|
-
showColumn: "列を表示",
|
|
2405
|
-
// "Make column private"
|
|
2406
|
-
makePrivateColumn: "列を非公開にする",
|
|
2407
|
-
// "Make column public"
|
|
2408
|
-
makePublicColumn: "列を公開する",
|
|
2409
|
-
// "Move to Detail"
|
|
2410
|
-
moveToDetail: "詳細に移動",
|
|
2411
|
-
// "Show as Column"
|
|
2412
|
-
showAsColumn: "列として表示",
|
|
2413
|
-
// "Search..."
|
|
2414
|
-
filterPlaceholder: "検索...",
|
|
2415
|
-
// "Remove rows"
|
|
2416
|
-
removeRows: "行を削除",
|
|
2417
|
-
// "Show"
|
|
2418
|
-
showLabel: "表示",
|
|
2419
|
-
// "entries"
|
|
2420
|
-
entriesLabel: "件",
|
|
2421
|
-
// "Texts in table"
|
|
2422
|
-
visualizer_text: "テキスト",
|
|
2423
|
-
// "Wordcloud"
|
|
2424
|
-
visualizer_wordcloud: "ワードクラウド",
|
|
2425
|
-
// "Histogram"
|
|
2426
|
-
visualizer_histogram: "ヒストグラム",
|
|
2427
|
-
// "Average"
|
|
2428
|
-
visualizer_number: "平均",
|
|
2429
|
-
// "Table"
|
|
2430
|
-
visualizer_choices: "テーブル",
|
|
2431
|
-
// "Chart"
|
|
2432
|
-
visualizer_selectBase: "チャート",
|
|
2433
|
-
// [Auto-translated] "Chart"
|
|
2434
|
-
visualizer_matrix: "チャート",
|
|
2435
|
-
// "Bar"
|
|
2436
|
-
chartType_bar: "棒グラフ",
|
|
2437
|
-
// "Vertical Bar"
|
|
2438
|
-
chartType_vbar: "縦棒グラフ",
|
|
2439
|
-
// "Stacked Bar"
|
|
2440
|
-
chartType_stackedbar: "積み上げ棒グラフ",
|
|
2441
|
-
// "Doughnut"
|
|
2442
|
-
chartType_doughnut: "ドーナツチャート",
|
|
2443
|
-
// "Pie"
|
|
2444
|
-
chartType_pie: "円グラフ",
|
|
2445
|
-
// "Scatter"
|
|
2446
|
-
chartType_scatter: "散布図",
|
|
2447
|
-
// "Gauge"
|
|
2448
|
-
chartType_gauge: "ゲージ",
|
|
2449
|
-
// "Bullet"
|
|
2450
|
-
chartType_bullet: "バレット",
|
|
2451
|
-
// [Auto-translated] "Line"
|
|
2452
|
-
chartType_line: "線",
|
|
2453
|
-
// [Auto-translated] "Radar"
|
|
2454
|
-
chartType_radar: "レーダー",
|
|
2455
|
-
// "Hide"
|
|
2456
|
-
hideButton: "非表示",
|
|
2457
|
-
// "Make private"
|
|
2458
|
-
makePrivateButton: "非公開にする",
|
|
2459
|
-
// "Make public"
|
|
2460
|
-
makePublicButton: "公開する",
|
|
2461
|
-
// "Show"
|
|
2462
|
-
showButton: "表示",
|
|
2463
|
-
// "Filter"
|
|
2464
|
-
filter: "フィルター",
|
|
2465
|
-
// "Reset Filter"
|
|
2466
|
-
resetFilter: "フィルターをリセット",
|
|
2467
|
-
// "Change Locale"
|
|
2468
|
-
changeLocale: "言語を変更",
|
|
2469
|
-
// "Clear"
|
|
2470
|
-
clearButton: "クリア",
|
|
2471
|
-
// "Choose question to show..."
|
|
2472
|
-
addElement: "表示する質問を選択...",
|
|
2473
|
-
// "Default Order"
|
|
2474
|
-
defaultOrder: "デフォルト順",
|
|
2475
|
-
// "Ascending"
|
|
2476
|
-
ascOrder: "昇順",
|
|
2477
|
-
// "Descending"
|
|
2478
|
-
descOrder: "降順",
|
|
2479
|
-
// "Show minor columns"
|
|
2480
|
-
showMinorColumns: "マイナー列を表示",
|
|
2481
|
-
// [Auto-translated] "Actions"
|
|
2482
|
-
actionsColumn: "アクション",
|
|
2483
|
-
// "Other items and comments"
|
|
2484
|
-
otherCommentTitle: "その他のアイテムとコメント",
|
|
2485
|
-
// "Show percentages"
|
|
2486
|
-
showPercentages: "パーセンテージを表示",
|
|
2487
|
-
// "Hide percentages"
|
|
2488
|
-
hidePercentages: "パーセンテージを非表示",
|
|
2489
|
-
// "PDF"
|
|
2490
|
-
pdfDownloadCaption: "PDF",
|
|
2491
|
-
// "Excel"
|
|
2492
|
-
xlsxDownloadCaption: "Excel",
|
|
2493
|
-
// "CSV"
|
|
2494
|
-
csvDownloadCaption: "CSV",
|
|
2495
|
-
// "Download plot as a PNG file"
|
|
2496
|
-
saveDiagramAsPNG: "プロットをPNGファイルとして保存",
|
|
2497
|
-
// "Hide empty answers"
|
|
2498
|
-
hideEmptyAnswers: "空の回答を非表示",
|
|
2499
|
-
// "Show empty answers"
|
|
2500
|
-
showEmptyAnswers: "空の回答を表示",
|
|
2501
|
-
// "All answers"
|
|
2502
|
-
"topNValueText-1": "すべての回答",
|
|
2503
|
-
// "Top 5 answers"
|
|
2504
|
-
topNValueText5: "上位5つの回答",
|
|
2505
|
-
// "Top 10 answers"
|
|
2506
|
-
topNValueText10: "上位10の回答",
|
|
2507
|
-
// "Top 20 answers"
|
|
2508
|
-
topNValueText20: "上位20の回答",
|
|
2509
|
-
// "Hide missing answers"
|
|
2510
|
-
hideMissingAnswers: "欠損値を非表示",
|
|
2511
|
-
// "Show missing answers"
|
|
2512
|
-
showMissingAnswers: "欠損値を表示",
|
|
2513
|
-
// "Missing answers"
|
|
2514
|
-
missingAnswersLabel: "欠損値",
|
|
2515
|
-
// "This question type is not visualized yet"
|
|
2516
|
-
noVisualizerForQuestion: "この質問タイプはまだ視覚化されていません",
|
|
2517
|
-
// "There are no results yet"
|
|
2518
|
-
noResults: "まだ結果がありません",
|
|
2519
|
-
// "Per Values"
|
|
2520
|
-
showPerValues: "値ごとに表示",
|
|
2521
|
-
// "Per Columns"
|
|
2522
|
-
showPerColumns: "列ごとに表示",
|
|
2523
|
-
// "Answer"
|
|
2524
|
-
answer: "回答",
|
|
2525
|
-
// "Correct answer: "
|
|
2526
|
-
correctAnswer: "正解: ",
|
|
2527
|
-
// "Percent"
|
|
2528
|
-
percent: "パーセント",
|
|
2529
|
-
// [Auto-translated] "Percentage"
|
|
2530
|
-
percentage: "百分率",
|
|
2531
|
-
// [Auto-translated] "Chart"
|
|
2532
|
-
statistics_chart: "チャート",
|
|
2533
|
-
// "Responses"
|
|
2534
|
-
responses: "回答数",
|
|
2535
|
-
// [Auto-translated] "NPS"
|
|
2536
|
-
visualizer_nps: "NPSの",
|
|
2537
|
-
// [Auto-translated] "Chart"
|
|
2538
|
-
visualizer_boolean: "チャート",
|
|
2539
|
-
// [Auto-translated] "Table"
|
|
2540
|
-
visualizer_options: "テーブル",
|
|
2541
|
-
// [Auto-translated] "NPS"
|
|
2542
|
-
npsScore: "NPSの",
|
|
2543
|
-
// [Auto-translated] "Promoters"
|
|
2544
|
-
npsPromoters: "プロモーター",
|
|
2545
|
-
// [Auto-translated] "Passives"
|
|
2546
|
-
npsPassives: "パッシブ",
|
|
2547
|
-
// [Auto-translated] "Detractors"
|
|
2548
|
-
npsDetractors: "中傷",
|
|
2549
|
-
// [Auto-translated] "Category (X Axis):"
|
|
2550
|
-
axisXSelectorTitle: "カテゴリ(X軸):",
|
|
2551
|
-
// [Auto-translated] "Legend (Series):"
|
|
2552
|
-
axisYSelectorTitle: "凡例(シリーズ):",
|
|
2553
|
-
// [Auto-translated] "Segments:"
|
|
2554
|
-
axisXAlternativeSelectorTitle: "セグメント:",
|
|
2555
|
-
// [Auto-translated] "Groups:"
|
|
2556
|
-
axisYAlternativeSelectorTitle: "グループ:",
|
|
2557
|
-
// [Auto-translated] "Not selected"
|
|
2558
|
-
notSelected: "選択されていない",
|
|
2559
|
-
// [Auto-translated] "Default"
|
|
2560
|
-
intervalMode_default: "デフォルト",
|
|
2561
|
-
// [Auto-translated] "Decades"
|
|
2562
|
-
intervalMode_decades: "数 十 年",
|
|
2563
|
-
// [Auto-translated] "Years"
|
|
2564
|
-
intervalMode_years: "月日",
|
|
2565
|
-
// [Auto-translated] "Quarters"
|
|
2566
|
-
intervalMode_quarters: "四半期",
|
|
2567
|
-
// [Auto-translated] "Months"
|
|
2568
|
-
intervalMode_months: "月",
|
|
2569
|
-
// [Auto-translated] "Days"
|
|
2570
|
-
intervalMode_days: "日",
|
|
2571
|
-
// [Auto-translated] "Custom"
|
|
2572
|
-
intervalMode_custom: "習慣",
|
|
2573
|
-
// [Auto-translated] "Auto"
|
|
2574
|
-
intervalMode_auto: "自動",
|
|
2575
|
-
// [Auto-translated] "Intervals:"
|
|
2576
|
-
intervalModeTitle: "間隔:",
|
|
2577
|
-
// [Auto-translated] "Show individual values"
|
|
2578
|
-
noRunningTotals: "個々の値を表示する",
|
|
2579
|
-
// [Auto-translated] "Show running totals"
|
|
2580
|
-
runningTotals: "累計を表示する",
|
|
2581
|
-
// [Auto-translated] "Compare periods"
|
|
2582
|
-
groupDateSeries: "期間の比較",
|
|
2583
|
-
// [Auto-translated] "View timeline"
|
|
2584
|
-
ungroupDateSeries: "タイムラインの表示",
|
|
2585
|
-
// [Auto-translated] "None"
|
|
2586
|
-
noneAggregateText: "何一つ",
|
|
2587
|
-
// [Auto-translated] "Aggregate:"
|
|
2588
|
-
selectAggregateText: "骨材:",
|
|
2589
|
-
// [Auto-translated] "Year ends with"
|
|
2590
|
-
groupedYearsAxisTitle: "年末は"
|
|
2591
|
-
};
|
|
2592
|
-
setupLocale({ localeCode: "ja", strings: japaneseStrings, nativeName: "日本語" });
|
|
2593
|
-
|
|
2594
|
-
var plStrings = {
|
|
2595
|
-
// "Group By Me"
|
|
2596
|
-
groupButton: "Grupuj według mnie",
|
|
2597
|
-
// "Ungroup By Me"
|
|
2598
|
-
ungroupButton: "Rozgrupuj według mnie",
|
|
2599
|
-
// "Select Me"
|
|
2600
|
-
selectButton: "Wybierz",
|
|
2601
|
-
// "Hide column"
|
|
2602
|
-
hideColumn: "Ukryj kolumnę",
|
|
2603
|
-
// "Show column"
|
|
2604
|
-
showColumn: "Pokaż kolumnę",
|
|
2605
|
-
// "Make column private"
|
|
2606
|
-
makePrivateColumn: "Uczyń kolumnę prywatną",
|
|
2607
|
-
// "Make column public"
|
|
2608
|
-
makePublicColumn: "Uczyń kolumnę publiczną",
|
|
2609
|
-
// "Move to Detail"
|
|
2610
|
-
moveToDetail: "Przenieś do szczegółów",
|
|
2611
|
-
// "Show as Column"
|
|
2612
|
-
showAsColumn: "Pokaż jako kolumnę",
|
|
2613
|
-
// "Search..."
|
|
2614
|
-
filterPlaceholder: "Szukaj...",
|
|
2615
|
-
// "Remove rows"
|
|
2616
|
-
removeRows: "Usuń wiersze",
|
|
2617
|
-
// "Show"
|
|
2618
|
-
showLabel: "Pokaż",
|
|
2619
|
-
// "entries"
|
|
2620
|
-
entriesLabel: "wejścia",
|
|
2621
|
-
// "Texts in table"
|
|
2622
|
-
visualizer_text: "Teksty w tabeli",
|
|
2623
|
-
// "Wordcloud"
|
|
2624
|
-
visualizer_wordcloud: "Chmura słów",
|
|
2625
|
-
// "Histogram"
|
|
2626
|
-
visualizer_histogram: "Histogram",
|
|
2627
|
-
// "Average"
|
|
2628
|
-
visualizer_number: "Średnia",
|
|
2629
|
-
// "Table"
|
|
2630
|
-
visualizer_choices: "Tabela",
|
|
2631
|
-
// "Chart"
|
|
2632
|
-
visualizer_selectBase: "Wykres",
|
|
2633
|
-
// "Chart"
|
|
2634
|
-
visualizer_matrix: "Wykres",
|
|
2635
|
-
// "Bar"
|
|
2636
|
-
chartType_bar: "Słupkowy",
|
|
2637
|
-
// "Vertical Bar"
|
|
2638
|
-
chartType_vbar: "Słupkowy pionowy",
|
|
2639
|
-
// "Stacked Bar"
|
|
2640
|
-
chartType_stackedbar: "Słupkowy skumulowany",
|
|
2641
|
-
// "Doughnut"
|
|
2642
|
-
chartType_doughnut: "Oponka",
|
|
2643
|
-
// "Pie"
|
|
2644
|
-
chartType_pie: "Tarta",
|
|
2645
|
-
// "Scatter"
|
|
2646
|
-
chartType_scatter: "Rozrzut",
|
|
2647
|
-
// "Gauge"
|
|
2648
|
-
chartType_gauge: "Skala",
|
|
2649
|
-
// "Bullet"
|
|
2650
|
-
chartType_bullet: "Pocisk",
|
|
2651
|
-
// [Auto-translated] "Line"
|
|
2652
|
-
chartType_line: "Linia",
|
|
2653
|
-
// [Auto-translated] "Radar"
|
|
2654
|
-
chartType_radar: "Radar",
|
|
2655
|
-
// "Hide"
|
|
2656
|
-
hideButton: "Ukryj",
|
|
2657
|
-
// "Make private"
|
|
2658
|
-
makePrivateButton: "Uczyń prywatnym",
|
|
2659
|
-
// "Make public"
|
|
2660
|
-
makePublicButton: "Uczyń publicznym",
|
|
2661
|
-
// "Show"
|
|
2662
|
-
showButton: "Pokaż",
|
|
2663
|
-
// "Filter"
|
|
2664
|
-
filter: "Filtruj",
|
|
2665
|
-
// "Reset Filter"
|
|
2666
|
-
resetFilter: "Resetuj filtr",
|
|
2667
|
-
// "Change Locale"
|
|
2668
|
-
changeLocale: "Zmień lokalizację",
|
|
2669
|
-
// "Clear"
|
|
2670
|
-
clearButton: "Wyczyść",
|
|
2671
|
-
// "Choose question to show..."
|
|
2672
|
-
addElement: "Wybierz pytanie do pokazania...",
|
|
2673
|
-
// "Default Order"
|
|
2674
|
-
defaultOrder: "Domyślne sortowanie",
|
|
2675
|
-
// "Ascending"
|
|
2676
|
-
ascOrder: "Rosnąco",
|
|
2677
|
-
// "Descending"
|
|
2678
|
-
descOrder: "Malejąco",
|
|
2679
|
-
// "Show minor columns"
|
|
2680
|
-
showMinorColumns: "Pokaż mniejsze kolumny",
|
|
2681
|
-
// [Auto-translated] "Actions"
|
|
2682
|
-
actionsColumn: "Akcje",
|
|
2683
|
-
// "Other items and comments"
|
|
2684
|
-
otherCommentTitle: "Inne elementy i komentarze",
|
|
2685
|
-
// "Show percentages"
|
|
2686
|
-
showPercentages: "Pokaż procenty",
|
|
2687
|
-
// "Hide percentages"
|
|
2688
|
-
hidePercentages: "Ukryj procenty",
|
|
2689
|
-
// "PDF"
|
|
2690
|
-
pdfDownloadCaption: "PDF",
|
|
2691
|
-
// "Excel"
|
|
2692
|
-
xlsxDownloadCaption: "Excel",
|
|
2693
|
-
// "CSV"
|
|
2694
|
-
csvDownloadCaption: "CSV",
|
|
2695
|
-
// "Download plot as a PNG file"
|
|
2696
|
-
saveDiagramAsPNG: "Pobierz diagram jako PNG",
|
|
2697
|
-
// "Hide empty answers"
|
|
2698
|
-
hideEmptyAnswers: "Ukryj puste odpowiedzi",
|
|
2699
|
-
// "Show empty answers"
|
|
2700
|
-
showEmptyAnswers: "Pokaż puste odpowiedzi",
|
|
2701
|
-
// "All answers"
|
|
2702
|
-
"topNValueText-1": "Wszystkie odpowiedzi",
|
|
2703
|
-
// "Top 5 answers"
|
|
2704
|
-
topNValueText5: "Pierwsze 5 odpowiedzi",
|
|
2705
|
-
// "Top 10 answers"
|
|
2706
|
-
topNValueText10: "Pierwsze 10 odpowiedzi",
|
|
2707
|
-
// "Top 20 answers"
|
|
2708
|
-
topNValueText20: "Pierwsze 20 odpowiedzi",
|
|
2709
|
-
// "Hide missing answers"
|
|
2710
|
-
hideMissingAnswers: "Ukryj nieodpowiedziane pytania",
|
|
2711
|
-
// "Show missing answers"
|
|
2712
|
-
showMissingAnswers: "Pokaż nieodpowiedziane pytania",
|
|
2713
|
-
// "Missing answers"
|
|
2714
|
-
missingAnswersLabel: "Nieodpowiedziane pytania",
|
|
2715
|
-
// "This question type is not visualized yet"
|
|
2716
|
-
noVisualizerForQuestion: "Ten typ pytania nie został jeszcze zwizualizowany",
|
|
2717
|
-
// "There are no results yet"
|
|
2718
|
-
noResults: "Nie ma jeszcze wyników",
|
|
2719
|
-
// "Per Values"
|
|
2720
|
-
showPerValues: "Według wartości",
|
|
2721
|
-
// "Per Columns"
|
|
2722
|
-
showPerColumns: "Według kolumn",
|
|
2723
|
-
// "Answer"
|
|
2724
|
-
answer: "Odpowiedź",
|
|
2725
|
-
// "Correct answer: "
|
|
2726
|
-
correctAnswer: "Odpowiedź poprawna: ",
|
|
2727
|
-
// "Percent"
|
|
2728
|
-
percent: "Procent",
|
|
2729
|
-
// [Auto-translated] "Percentage"
|
|
2730
|
-
percentage: "Procent",
|
|
2731
|
-
// [Auto-translated] "Chart"
|
|
2732
|
-
statistics_chart: "Wykres",
|
|
2733
|
-
// "Responses"
|
|
2734
|
-
responses: "Odpowiedzi",
|
|
2735
|
-
// [Auto-translated] "NPS"
|
|
2736
|
-
visualizer_nps: "Wskaźnik NPS",
|
|
2737
|
-
// [Auto-translated] "Chart"
|
|
2738
|
-
visualizer_boolean: "Wykres",
|
|
2739
|
-
// [Auto-translated] "Table"
|
|
2740
|
-
visualizer_options: "Stół",
|
|
2741
|
-
// [Auto-translated] "NPS"
|
|
2742
|
-
npsScore: "Wskaźnik NPS",
|
|
2743
|
-
// [Auto-translated] "Promoters"
|
|
2744
|
-
npsPromoters: "Promotorów",
|
|
2745
|
-
// [Auto-translated] "Passives"
|
|
2746
|
-
npsPassives: "Passives",
|
|
2747
|
-
// [Auto-translated] "Detractors"
|
|
2748
|
-
npsDetractors: "Przeciwników",
|
|
2749
|
-
// [Auto-translated] "Category (X Axis):"
|
|
2750
|
-
axisXSelectorTitle: "Kategoria (oś X):",
|
|
2751
|
-
// [Auto-translated] "Legend (Series):"
|
|
2752
|
-
axisYSelectorTitle: "Legenda (seria):",
|
|
2753
|
-
// [Auto-translated] "Segments:"
|
|
2754
|
-
axisXAlternativeSelectorTitle: "Segmenty:",
|
|
2755
|
-
// [Auto-translated] "Groups:"
|
|
2756
|
-
axisYAlternativeSelectorTitle: "Grupy:",
|
|
2757
|
-
// [Auto-translated] "Not selected"
|
|
2758
|
-
notSelected: "Nie wybrano",
|
|
2759
|
-
// [Auto-translated] "Default"
|
|
2760
|
-
intervalMode_default: "Domyślny",
|
|
2761
|
-
// [Auto-translated] "Decades"
|
|
2762
|
-
intervalMode_decades: "Dziesięciolecia",
|
|
2763
|
-
// [Auto-translated] "Years"
|
|
2764
|
-
intervalMode_years: "Lata",
|
|
2765
|
-
// [Auto-translated] "Quarters"
|
|
2766
|
-
intervalMode_quarters: "Kwartałów",
|
|
2767
|
-
// [Auto-translated] "Months"
|
|
2768
|
-
intervalMode_months: "Miesiące",
|
|
2769
|
-
// [Auto-translated] "Days"
|
|
2770
|
-
intervalMode_days: "Dni",
|
|
2771
|
-
// [Auto-translated] "Custom"
|
|
2772
|
-
intervalMode_custom: "Zwyczaj",
|
|
2773
|
-
// [Auto-translated] "Auto"
|
|
2774
|
-
intervalMode_auto: "Automatycznie",
|
|
2775
|
-
// [Auto-translated] "Intervals:"
|
|
2776
|
-
intervalModeTitle: "Odstępach czasu:",
|
|
2777
|
-
// [Auto-translated] "Show individual values"
|
|
2778
|
-
noRunningTotals: "Pokaż poszczególne wartości",
|
|
2779
|
-
// [Auto-translated] "Show running totals"
|
|
2780
|
-
runningTotals: "Pokazywanie sum bieżących",
|
|
2781
|
-
// [Auto-translated] "Compare periods"
|
|
2782
|
-
groupDateSeries: "Porównywanie okresów",
|
|
2783
|
-
// [Auto-translated] "View timeline"
|
|
2784
|
-
ungroupDateSeries: "Wyświetl oś czasu",
|
|
2785
|
-
// [Auto-translated] "None"
|
|
2786
|
-
noneAggregateText: "Żaden",
|
|
2787
|
-
// [Auto-translated] "Aggregate:"
|
|
2788
|
-
selectAggregateText: "Kruszywo:",
|
|
2789
|
-
// [Auto-translated] "Year ends with"
|
|
2790
|
-
groupedYearsAxisTitle: "Rok kończy się na"
|
|
577
|
+
PlotlySetup.imageExportFormat = "png";
|
|
578
|
+
PlotlySetup.defaultBarGap = DashboardTheme.barGap;
|
|
579
|
+
/**
|
|
580
|
+
* Fires when end user clicks on the 'save as image' button.
|
|
581
|
+
*/
|
|
582
|
+
PlotlySetup.onImageSaving = new Event();
|
|
583
|
+
/**
|
|
584
|
+
* Fires before plot will be created. User can change traces, layout and config of the plot.
|
|
585
|
+
* Options is an object with the following fields: traces, layout and config of the plot.
|
|
586
|
+
*/
|
|
587
|
+
PlotlySetup.onPlotCreating = new Event();
|
|
588
|
+
PlotlySetup.setups = {
|
|
589
|
+
bar: PlotlySetup.setupBar,
|
|
590
|
+
vbar: PlotlySetup.setupVBar,
|
|
591
|
+
line: PlotlySetup.setupVBar,
|
|
592
|
+
stackedbar: PlotlySetup.setupBar,
|
|
593
|
+
doughnut: PlotlySetup.setupPie,
|
|
594
|
+
pie: PlotlySetup.setupPie,
|
|
595
|
+
scatter: PlotlySetup.setupScatter,
|
|
596
|
+
gauge: PlotlySetup.setupGauge,
|
|
597
|
+
bullet: PlotlySetup.setupGauge,
|
|
598
|
+
radar: PlotlySetup.setupRadar,
|
|
599
|
+
histogram: PlotlySetup.setupBar,
|
|
600
|
+
vhistogram: PlotlySetup.setupVBar,
|
|
601
|
+
stackedhistogram: PlotlySetup.setupBar,
|
|
2791
602
|
};
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
hideColumn: "Piilota sarake",
|
|
2803
|
-
// "Show column"
|
|
2804
|
-
showColumn: "Näytä sarake",
|
|
2805
|
-
// "Make column private"
|
|
2806
|
-
makePrivateColumn: "Merkitse sarake yksityiseksi",
|
|
2807
|
-
// "Make column public"
|
|
2808
|
-
makePublicColumn: "Merkitse sarake julkiseksi",
|
|
2809
|
-
// "Move to Detail"
|
|
2810
|
-
moveToDetail: "Siirrä yksityiskohtiin",
|
|
2811
|
-
// "Show as Column"
|
|
2812
|
-
showAsColumn: "Näytä sarakkeena",
|
|
2813
|
-
// "Search..."
|
|
2814
|
-
filterPlaceholder: "Etsi...",
|
|
2815
|
-
// "Remove rows"
|
|
2816
|
-
removeRows: "Poista rivejä",
|
|
2817
|
-
// "Show"
|
|
2818
|
-
showLabel: "Näytä",
|
|
2819
|
-
// "entries"
|
|
2820
|
-
entriesLabel: "vastauksia",
|
|
2821
|
-
// "Texts in table"
|
|
2822
|
-
visualizer_text: "Tekstitaulukko",
|
|
2823
|
-
// "Wordcloud"
|
|
2824
|
-
visualizer_wordcloud: "Sanapilvi",
|
|
2825
|
-
// "Histogram"
|
|
2826
|
-
visualizer_histogram: "Histogrammi",
|
|
2827
|
-
// "Average"
|
|
2828
|
-
visualizer_number: "Keskiarvo",
|
|
2829
|
-
// "Table"
|
|
2830
|
-
visualizer_choices: "Taulukko",
|
|
2831
|
-
// "Chart"
|
|
2832
|
-
visualizer_selectBase: "Kuvaaja",
|
|
2833
|
-
// "Chart"
|
|
2834
|
-
visualizer_matrix: "Kuvaaja",
|
|
2835
|
-
// "Bar"
|
|
2836
|
-
chartType_bar: "Pylväs",
|
|
2837
|
-
// "Vertical Bar"
|
|
2838
|
-
chartType_vbar: "Vaakapyöväs",
|
|
2839
|
-
// "Stacked Bar"
|
|
2840
|
-
chartType_stackedbar: "Pinottu pylväs",
|
|
2841
|
-
// "Doughnut"
|
|
2842
|
-
chartType_doughnut: "Donitsi",
|
|
2843
|
-
// "Pie"
|
|
2844
|
-
chartType_pie: "Piirakka",
|
|
2845
|
-
// "Scatter"
|
|
2846
|
-
chartType_scatter: "Hajonta",
|
|
2847
|
-
// "Gauge"
|
|
2848
|
-
chartType_gauge: "Mittari",
|
|
2849
|
-
// "Bullet"
|
|
2850
|
-
chartType_bullet: "Luoti",
|
|
2851
|
-
// "Line"
|
|
2852
|
-
chartType_line: "Viiva",
|
|
2853
|
-
// [Auto-translated] "Radar"
|
|
2854
|
-
chartType_radar: "Tutka",
|
|
2855
|
-
// "Hide"
|
|
2856
|
-
hideButton: "Piilota",
|
|
2857
|
-
// "Make private"
|
|
2858
|
-
makePrivateButton: "Merkise yksityiseksi",
|
|
2859
|
-
// "Make public"
|
|
2860
|
-
makePublicButton: "Merkitse julkiseksi",
|
|
2861
|
-
// "Show"
|
|
2862
|
-
showButton: "Näytä",
|
|
2863
|
-
// "Filter"
|
|
2864
|
-
filter: "Rajaa",
|
|
2865
|
-
// "Reset Filter"
|
|
2866
|
-
resetFilter: "Nollaa Rajaus",
|
|
2867
|
-
// "Change Locale"
|
|
2868
|
-
changeLocale: "Vaihda kieli",
|
|
2869
|
-
// "Clear"
|
|
2870
|
-
clearButton: "Nollaa",
|
|
2871
|
-
// "Choose question to show..."
|
|
2872
|
-
addElement: "Valitse näytettävä kysymys...",
|
|
2873
|
-
// "Default Order"
|
|
2874
|
-
defaultOrder: "Oletusjärjestys",
|
|
2875
|
-
// "Ascending"
|
|
2876
|
-
ascOrder: "Nouseva",
|
|
2877
|
-
// "Descending"
|
|
2878
|
-
descOrder: "Laskeva",
|
|
2879
|
-
// "Show minor columns"
|
|
2880
|
-
showMinorColumns: "Näytä alasarakkeet",
|
|
2881
|
-
// [Auto-translated] "Actions"
|
|
2882
|
-
actionsColumn: "Toimet",
|
|
2883
|
-
// "Other items and comments"
|
|
2884
|
-
otherCommentTitle: "Muut asiat ja kommentit",
|
|
2885
|
-
// "Show percentages"
|
|
2886
|
-
showPercentages: "Näytä prosentit",
|
|
2887
|
-
// "Hide percentages"
|
|
2888
|
-
hidePercentages: "Piilota prosentit",
|
|
2889
|
-
// "PDF"
|
|
2890
|
-
pdfDownloadCaption: "PDF",
|
|
2891
|
-
// "Excel"
|
|
2892
|
-
xlsxDownloadCaption: "Excel",
|
|
2893
|
-
// "CSV"
|
|
2894
|
-
csvDownloadCaption: "CSV",
|
|
2895
|
-
// "Download plot as a PNG file"
|
|
2896
|
-
saveDiagramAsPNG: "Lataa kuvaaja PNG kuvana",
|
|
2897
|
-
// "Hide empty answers"
|
|
2898
|
-
hideEmptyAnswers: "Piilota tyhjät vastaukset",
|
|
2899
|
-
// "Show empty answers"
|
|
2900
|
-
showEmptyAnswers: "Näytä tyhjät vastaukset",
|
|
2901
|
-
// "All answers"
|
|
2902
|
-
"topNValueText-1": "Kaikki vastaukset",
|
|
2903
|
-
// "Top 5 answers"
|
|
2904
|
-
topNValueText5: "Top 5 vastaukset",
|
|
2905
|
-
// "Top 10 answers"
|
|
2906
|
-
topNValueText10: "Top 10 vastaukset",
|
|
2907
|
-
// "Top 20 answers"
|
|
2908
|
-
topNValueText20: "Top 20 vastaukset",
|
|
2909
|
-
// "Hide missing answers"
|
|
2910
|
-
hideMissingAnswers: "Piilota puuttuvat vastaukset",
|
|
2911
|
-
// "Show missing answers"
|
|
2912
|
-
showMissingAnswers: "Näytä puuttuvat vastaukset",
|
|
2913
|
-
// "Missing answers"
|
|
2914
|
-
missingAnswersLabel: "Puuttuvat vastaukset",
|
|
2915
|
-
// "This question type is not visualized yet"
|
|
2916
|
-
noVisualizerForQuestion: "Tätä kysymystyyppiä ei voida visualisoida.",
|
|
2917
|
-
// "There are no results yet"
|
|
2918
|
-
noResults: "Ei vielä tuloksia",
|
|
2919
|
-
// "Per Values"
|
|
2920
|
-
showPerValues: "Näytä arvottain",
|
|
2921
|
-
// "Per Columns"
|
|
2922
|
-
showPerColumns: "Näytä sarakkeittain",
|
|
2923
|
-
// "Answer"
|
|
2924
|
-
answer: "Vastaus",
|
|
2925
|
-
// "Correct answer: "
|
|
2926
|
-
correctAnswer: "Oikea vastaus: ",
|
|
2927
|
-
// "Percent"
|
|
2928
|
-
percent: "Prosentti",
|
|
2929
|
-
// "Percentage"
|
|
2930
|
-
percentage: "Prosenttiyksikkö",
|
|
2931
|
-
// "Chart"
|
|
2932
|
-
statistics_chart: "Kuvaaja",
|
|
2933
|
-
// "Responses"
|
|
2934
|
-
responses: "Vastaukset",
|
|
2935
|
-
// "NPS"
|
|
2936
|
-
visualizer_nps: "NPS",
|
|
2937
|
-
// [Auto-translated] "Chart"
|
|
2938
|
-
visualizer_boolean: "Kaavio",
|
|
2939
|
-
// [Auto-translated] "Table"
|
|
2940
|
-
visualizer_options: "Taulukko",
|
|
2941
|
-
// "NPS"
|
|
2942
|
-
npsScore: "NPS",
|
|
2943
|
-
// "Promoters"
|
|
2944
|
-
npsPromoters: "Suosittelija",
|
|
2945
|
-
// "Passives"
|
|
2946
|
-
npsPassives: "Passiivinen",
|
|
2947
|
-
// "Detractors"
|
|
2948
|
-
npsDetractors: "Arvostelija",
|
|
2949
|
-
// [Auto-translated] "Category (X Axis):"
|
|
2950
|
-
axisXSelectorTitle: "Luokka (X-akseli):",
|
|
2951
|
-
// [Auto-translated] "Legend (Series):"
|
|
2952
|
-
axisYSelectorTitle: "Legenda (sarja):",
|
|
2953
|
-
// [Auto-translated] "Segments:"
|
|
2954
|
-
axisXAlternativeSelectorTitle: "Segmentit:",
|
|
2955
|
-
// [Auto-translated] "Groups:"
|
|
2956
|
-
axisYAlternativeSelectorTitle: "Ryhmät:",
|
|
2957
|
-
// [Auto-translated] "Not selected"
|
|
2958
|
-
notSelected: "Ei valittu",
|
|
2959
|
-
// [Auto-translated] "Default"
|
|
2960
|
-
intervalMode_default: "Laiminlyönti",
|
|
2961
|
-
// [Auto-translated] "Decades"
|
|
2962
|
-
intervalMode_decades: "Vuosikymmeniä",
|
|
2963
|
-
// [Auto-translated] "Years"
|
|
2964
|
-
intervalMode_years: "Vuosia",
|
|
2965
|
-
// [Auto-translated] "Quarters"
|
|
2966
|
-
intervalMode_quarters: "Neljäsosaa",
|
|
2967
|
-
// [Auto-translated] "Months"
|
|
2968
|
-
intervalMode_months: "Kuukautta",
|
|
2969
|
-
// [Auto-translated] "Days"
|
|
2970
|
-
intervalMode_days: "Päivää",
|
|
2971
|
-
// [Auto-translated] "Custom"
|
|
2972
|
-
intervalMode_custom: "Tapa",
|
|
2973
|
-
// [Auto-translated] "Auto"
|
|
2974
|
-
intervalMode_auto: "Auto",
|
|
2975
|
-
// [Auto-translated] "Intervals:"
|
|
2976
|
-
intervalModeTitle: "Välein:",
|
|
2977
|
-
// [Auto-translated] "Show individual values"
|
|
2978
|
-
noRunningTotals: "Näytä yksittäiset arvot",
|
|
2979
|
-
// [Auto-translated] "Show running totals"
|
|
2980
|
-
runningTotals: "Näytä juoksevat kokonaismäärät",
|
|
2981
|
-
// [Auto-translated] "Compare periods"
|
|
2982
|
-
groupDateSeries: "Vertaile kausia",
|
|
2983
|
-
// [Auto-translated] "View timeline"
|
|
2984
|
-
ungroupDateSeries: "Näytä aikajana",
|
|
2985
|
-
// [Auto-translated] "None"
|
|
2986
|
-
noneAggregateText: "Ei lainkaan",
|
|
2987
|
-
// [Auto-translated] "Aggregate:"
|
|
2988
|
-
selectAggregateText: "Aggregaatti:",
|
|
2989
|
-
// [Auto-translated] "Year ends with"
|
|
2990
|
-
groupedYearsAxisTitle: "Vuosi päättyy"
|
|
603
|
+
PlotlySetup.getTruncatedLabel = (label, labelTruncateLength) => {
|
|
604
|
+
const truncateSymbols = "...";
|
|
605
|
+
const truncateSymbolsLength = truncateSymbols.length;
|
|
606
|
+
if (!labelTruncateLength)
|
|
607
|
+
return label;
|
|
608
|
+
if (labelTruncateLength === -1)
|
|
609
|
+
return label;
|
|
610
|
+
if (label.length <= labelTruncateLength + truncateSymbolsLength)
|
|
611
|
+
return label;
|
|
612
|
+
return label.substring(0, labelTruncateLength) + truncateSymbols;
|
|
2991
613
|
};
|
|
2992
|
-
setupLocale({ localeCode: "fi", strings: finnishStrings, nativeName: "Suomi" });
|
|
2993
614
|
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
// "entries"
|
|
3020
|
-
entriesLabel: "poster",
|
|
3021
|
-
// "Texts in table"
|
|
3022
|
-
visualizer_text: "Texter i tabell",
|
|
3023
|
-
// "Wordcloud"
|
|
3024
|
-
visualizer_wordcloud: "Ordmoln",
|
|
3025
|
-
// "Histogram"
|
|
3026
|
-
visualizer_histogram: "Histogram",
|
|
3027
|
-
// "Average"
|
|
3028
|
-
visualizer_number: "Genomsnitt",
|
|
3029
|
-
// "Table"
|
|
3030
|
-
visualizer_choices: "Tabell",
|
|
3031
|
-
// "Chart"
|
|
3032
|
-
visualizer_selectBase: "Diagram",
|
|
3033
|
-
// "Chart"
|
|
3034
|
-
visualizer_matrix: "Diagram",
|
|
3035
|
-
// "Bar"
|
|
3036
|
-
chartType_bar: "Stapel",
|
|
3037
|
-
// "Vertical Bar"
|
|
3038
|
-
chartType_vbar: "Vertikal stapel",
|
|
3039
|
-
// "Stacked Bar"
|
|
3040
|
-
chartType_stackedbar: "Staplad stapel",
|
|
3041
|
-
// "Doughnut"
|
|
3042
|
-
chartType_doughnut: "Ring",
|
|
3043
|
-
// "Pie"
|
|
3044
|
-
chartType_pie: "Cirkel",
|
|
3045
|
-
// "Scatter"
|
|
3046
|
-
chartType_scatter: "Punkt",
|
|
3047
|
-
// "Gauge"
|
|
3048
|
-
chartType_gauge: "Mätare",
|
|
3049
|
-
// "Bullet"
|
|
3050
|
-
chartType_bullet: "Bullet",
|
|
3051
|
-
// "Line"
|
|
3052
|
-
chartType_line: "Linje",
|
|
3053
|
-
// "Radar"
|
|
3054
|
-
chartType_radar: "Radar",
|
|
3055
|
-
// "Hide"
|
|
3056
|
-
hideButton: "Göm",
|
|
3057
|
-
// "Make private"
|
|
3058
|
-
makePrivateButton: "Gör privat",
|
|
3059
|
-
// "Make public"
|
|
3060
|
-
makePublicButton: "Gör offentlig",
|
|
3061
|
-
// "Show"
|
|
3062
|
-
showButton: "Visa",
|
|
3063
|
-
// "Filter"
|
|
3064
|
-
filter: "Filter",
|
|
3065
|
-
// "Reset Filter"
|
|
3066
|
-
resetFilter: "Återställ filter",
|
|
3067
|
-
// "Change Locale"
|
|
3068
|
-
changeLocale: "Ändra språk",
|
|
3069
|
-
// "Clear"
|
|
3070
|
-
clearButton: "Rensa",
|
|
3071
|
-
// "Choose question to show..."
|
|
3072
|
-
addElement: "Välj fråga att visa...",
|
|
3073
|
-
// "Default Order"
|
|
3074
|
-
defaultOrder: "Standard ordning",
|
|
3075
|
-
// "Ascending"
|
|
3076
|
-
ascOrder: "Stigande",
|
|
3077
|
-
// "Descending"
|
|
3078
|
-
descOrder: "Fallande",
|
|
3079
|
-
// "Show minor columns"
|
|
3080
|
-
showMinorColumns: "Visa mindre kolumner",
|
|
3081
|
-
// "Actions"
|
|
3082
|
-
actionsColumn: "Åtgärder",
|
|
3083
|
-
// "Other items and comments"
|
|
3084
|
-
otherCommentTitle: "Övriga objekt och kommentarer",
|
|
3085
|
-
// "Show percentages"
|
|
3086
|
-
showPercentages: "Visa procent",
|
|
3087
|
-
// "Hide percentages"
|
|
3088
|
-
hidePercentages: "Göm procent",
|
|
3089
|
-
// "PDF"
|
|
3090
|
-
pdfDownloadCaption: "PDF",
|
|
3091
|
-
// "Excel"
|
|
3092
|
-
xlsxDownloadCaption: "Excel",
|
|
3093
|
-
// "CSV"
|
|
3094
|
-
csvDownloadCaption: "CSV",
|
|
3095
|
-
// "Download plot as a PNG file"
|
|
3096
|
-
saveDiagramAsPNG: "Ladda ner diagram som PNG-fil",
|
|
3097
|
-
// "Hide empty answers"
|
|
3098
|
-
hideEmptyAnswers: "Göm tomma svar",
|
|
3099
|
-
// "Show empty answers"
|
|
3100
|
-
showEmptyAnswers: "Visa tomma svar",
|
|
3101
|
-
// "All answers"
|
|
3102
|
-
"topNValueText-1": "Alla svar",
|
|
3103
|
-
// "Top 5 answers"
|
|
3104
|
-
topNValueText5: "Topp 5 svar",
|
|
3105
|
-
// "Top 10 answers"
|
|
3106
|
-
topNValueText10: "Topp 10 svar",
|
|
3107
|
-
// "Top 20 answers"
|
|
3108
|
-
topNValueText20: "Topp 20 svar",
|
|
3109
|
-
// "Hide missing answers"
|
|
3110
|
-
hideMissingAnswers: "Göm saknade svar",
|
|
3111
|
-
// "Show missing answers"
|
|
3112
|
-
showMissingAnswers: "Visa saknade svar",
|
|
3113
|
-
// "Missing answers"
|
|
3114
|
-
missingAnswersLabel: "Saknade svar",
|
|
3115
|
-
// "This question type is not visualized yet"
|
|
3116
|
-
noVisualizerForQuestion: "Detta frågetyp är inte visualiserad ännu",
|
|
3117
|
-
// "There are no results yet"
|
|
3118
|
-
noResults: "Det finns inga resultat ännu",
|
|
3119
|
-
// "Per Values"
|
|
3120
|
-
showPerValues: "Per värden",
|
|
3121
|
-
// "Per Columns"
|
|
3122
|
-
showPerColumns: "Per kolumner",
|
|
3123
|
-
// "Answer"
|
|
3124
|
-
answer: "Svar",
|
|
3125
|
-
// "Correct answer: "
|
|
3126
|
-
correctAnswer: "Rätt svar: ",
|
|
3127
|
-
// "Percent"
|
|
3128
|
-
percent: "Procent",
|
|
3129
|
-
// "Percentage"
|
|
3130
|
-
percentage: "Procent",
|
|
3131
|
-
// "Chart"
|
|
3132
|
-
statistics_chart: "Diagram",
|
|
3133
|
-
// "Responses"
|
|
3134
|
-
responses: "Svar",
|
|
3135
|
-
// "NPS"
|
|
3136
|
-
visualizer_nps: "NPS",
|
|
3137
|
-
// [Auto-translated] "Chart"
|
|
3138
|
-
visualizer_boolean: "Diagram",
|
|
3139
|
-
// [Auto-translated] "Table"
|
|
3140
|
-
visualizer_options: "Bord",
|
|
3141
|
-
// "NPS"
|
|
3142
|
-
npsScore: "NPS",
|
|
3143
|
-
// "Promoters"
|
|
3144
|
-
npsPromoters: "Promotorer",
|
|
3145
|
-
// "Passives"
|
|
3146
|
-
npsPassives: "Passiva",
|
|
3147
|
-
// "Detractors"
|
|
3148
|
-
npsDetractors: "Kritiker",
|
|
3149
|
-
// "Category (X Axis):"
|
|
3150
|
-
axisXSelectorTitle: "X-axel:",
|
|
3151
|
-
// "Legend (Series):"
|
|
3152
|
-
axisYSelectorTitle: "Y-axel:",
|
|
3153
|
-
// [Auto-translated] "Segments:"
|
|
3154
|
-
axisXAlternativeSelectorTitle: "Segment:",
|
|
3155
|
-
// [Auto-translated] "Groups:"
|
|
3156
|
-
axisYAlternativeSelectorTitle: "Grupper:",
|
|
3157
|
-
// [Auto-translated] "Not selected"
|
|
3158
|
-
notSelected: "Inte valt",
|
|
3159
|
-
// [Auto-translated] "Default"
|
|
3160
|
-
intervalMode_default: "Standard",
|
|
3161
|
-
// [Auto-translated] "Decades"
|
|
3162
|
-
intervalMode_decades: "Årtionden",
|
|
3163
|
-
// [Auto-translated] "Years"
|
|
3164
|
-
intervalMode_years: "År",
|
|
3165
|
-
// [Auto-translated] "Quarters"
|
|
3166
|
-
intervalMode_quarters: "Bostad",
|
|
3167
|
-
// [Auto-translated] "Months"
|
|
3168
|
-
intervalMode_months: "Månader",
|
|
3169
|
-
// [Auto-translated] "Days"
|
|
3170
|
-
intervalMode_days: "Dagar",
|
|
3171
|
-
// [Auto-translated] "Custom"
|
|
3172
|
-
intervalMode_custom: "Sed",
|
|
3173
|
-
// [Auto-translated] "Auto"
|
|
3174
|
-
intervalMode_auto: "Bil",
|
|
3175
|
-
// [Auto-translated] "Intervals:"
|
|
3176
|
-
intervalModeTitle: "Mellanrum:",
|
|
3177
|
-
// [Auto-translated] "Show individual values"
|
|
3178
|
-
noRunningTotals: "Visa individuella värden",
|
|
3179
|
-
// [Auto-translated] "Show running totals"
|
|
3180
|
-
runningTotals: "Visa löpande totaler",
|
|
3181
|
-
// [Auto-translated] "Compare periods"
|
|
3182
|
-
groupDateSeries: "Jämför perioder",
|
|
3183
|
-
// [Auto-translated] "View timeline"
|
|
3184
|
-
ungroupDateSeries: "Visa tidslinjen",
|
|
3185
|
-
// [Auto-translated] "None"
|
|
3186
|
-
noneAggregateText: "Ingen",
|
|
3187
|
-
// [Auto-translated] "Aggregate:"
|
|
3188
|
-
selectAggregateText: "Aggregat:",
|
|
3189
|
-
// [Auto-translated] "Year ends with"
|
|
3190
|
-
groupedYearsAxisTitle: "Året slutar med"
|
|
3191
|
-
};
|
|
3192
|
-
setupLocale({ localeCode: "sv", strings: swedishStrings, nativeName: "Svenska" });
|
|
615
|
+
class SelectBasePlotly extends SelectBase {
|
|
616
|
+
}
|
|
617
|
+
SelectBasePlotly.types = ["bar", "vbar", "pie", "doughnut"];
|
|
618
|
+
SelectBasePlotly.displayModeBar = undefined;
|
|
619
|
+
class BooleanPlotly extends BooleanModel {
|
|
620
|
+
}
|
|
621
|
+
BooleanPlotly.types = ["pie", "doughnut", "bar"];
|
|
622
|
+
class HistogramPlotly extends HistogramModel {
|
|
623
|
+
}
|
|
624
|
+
HistogramPlotly.types = ["vbar", "bar"];
|
|
625
|
+
class MatrixPlotly extends Matrix {
|
|
626
|
+
}
|
|
627
|
+
MatrixPlotly.types = ["bar", "stackedbar", "pie", "doughnut"];
|
|
628
|
+
class MatrixDropdownGroupedPlotly extends MatrixDropdownGrouped {
|
|
629
|
+
}
|
|
630
|
+
MatrixDropdownGroupedPlotly.types = ["stackedbar", "bar", "pie", "doughnut"];
|
|
631
|
+
class PivotPlotly extends PivotModel {
|
|
632
|
+
}
|
|
633
|
+
PivotPlotly.types = ["vbar", "bar", "line", "stackedbar", "pie", "doughnut"]; // ["vbar", "bar"];
|
|
634
|
+
class GaugePlotly extends NumberModel {
|
|
635
|
+
}
|
|
636
|
+
GaugePlotly.displayModeBar = undefined;
|
|
637
|
+
GaugePlotly.types = ["gauge", "bullet"];
|
|
638
|
+
class RankingPlotly extends RankingModel {
|
|
639
|
+
}
|
|
3193
640
|
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
641
|
+
const chartTypes = {
|
|
642
|
+
"boolean": ["pie", "doughnut", "bar"],
|
|
643
|
+
"number": ["gauge", "bullet"],
|
|
644
|
+
"average": ["gauge", "bullet"],
|
|
645
|
+
"selectBase": ["bar", "vbar", "pie", "doughnut"],
|
|
646
|
+
"histogram": ["vhistogram", "histogram"],
|
|
647
|
+
"matrix": ["bar", "stackedbar", "pie", "doughnut"],
|
|
648
|
+
"matrixDropdownGrouped": ["stackedbar", "bar", "pie", "doughnut"],
|
|
649
|
+
"pivot": ["vbar", "bar", "line", "stackedbar", "pie", "doughnut"], // ["vbar", "bar"]
|
|
650
|
+
"ranking": ["bar", "vbar", "pie", "doughnut", "radar"],
|
|
3203
651
|
};
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
652
|
+
class PlotlyChartAdapter {
|
|
653
|
+
static getChartTypesByVisualizerType(vType) {
|
|
654
|
+
return (chartTypes[vType] || []).slice();
|
|
655
|
+
}
|
|
656
|
+
constructor(model) {
|
|
657
|
+
this.model = model;
|
|
658
|
+
this._chart = undefined;
|
|
659
|
+
}
|
|
660
|
+
patchConfigParameters(chartNode, traces, layout, config) {
|
|
661
|
+
if (this.model.dataType === "boolean") {
|
|
662
|
+
const colors = VisualizerBase.getColors();
|
|
663
|
+
const boolColors = [
|
|
664
|
+
BooleanModel.trueColor || colors[0],
|
|
665
|
+
BooleanModel.falseColor || colors[1],
|
|
666
|
+
];
|
|
667
|
+
if (this.model.showMissingAnswers) {
|
|
668
|
+
boolColors.push(colors[2]);
|
|
669
|
+
}
|
|
670
|
+
const chartType = this.model.chartType;
|
|
671
|
+
if (chartType === "pie" || chartType === "doughnut") {
|
|
672
|
+
traces.forEach((trace) => {
|
|
673
|
+
if (!trace)
|
|
674
|
+
return;
|
|
675
|
+
if (!trace.marker)
|
|
676
|
+
trace.marker = {};
|
|
677
|
+
trace.marker.colors = boolColors;
|
|
678
|
+
});
|
|
679
|
+
}
|
|
680
|
+
else if (chartType === "bar") {
|
|
681
|
+
traces.forEach((trace) => {
|
|
682
|
+
if (!trace)
|
|
683
|
+
return;
|
|
684
|
+
if (!trace.marker)
|
|
685
|
+
trace.marker = {};
|
|
686
|
+
trace.marker.color = boolColors;
|
|
687
|
+
});
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
if (this.model.type === "average") {
|
|
691
|
+
config.displayModeBar = true;
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
get chart() {
|
|
695
|
+
return this._chart;
|
|
696
|
+
}
|
|
697
|
+
getChartTypes() {
|
|
698
|
+
const visualizerType = this.model.type;
|
|
699
|
+
const chartCtypes = chartTypes[visualizerType];
|
|
700
|
+
return (chartCtypes || []).slice();
|
|
701
|
+
}
|
|
702
|
+
create(chartNode) {
|
|
703
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
704
|
+
const [plot, plotlyOptions] = yield this.update(chartNode);
|
|
705
|
+
this._chart = plot;
|
|
706
|
+
return plot;
|
|
707
|
+
});
|
|
708
|
+
}
|
|
709
|
+
update(chartNode) {
|
|
710
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
711
|
+
chartNode.className = "sa-visualizer--plotly";
|
|
712
|
+
const answersData = yield this.model.getAnswersData();
|
|
713
|
+
var plotlyOptions = PlotlySetup.setup(this.model.chartType, this.model, answersData);
|
|
714
|
+
let config = {
|
|
715
|
+
displaylogo: false,
|
|
716
|
+
responsive: true,
|
|
717
|
+
locale: localization.currentLocale,
|
|
718
|
+
modeBarButtonsToRemove: ["toImage"],
|
|
719
|
+
modeBarButtonsToAdd: [
|
|
720
|
+
{
|
|
721
|
+
name: "toImageSjs",
|
|
722
|
+
title: localization.getString("saveDiagramAsPNG"),
|
|
723
|
+
icon: Plotly.Icons.camera,
|
|
724
|
+
click: (gd) => {
|
|
725
|
+
let options = {
|
|
726
|
+
format: PlotlySetup.imageExportFormat,
|
|
727
|
+
// width: 800,
|
|
728
|
+
// height: 600,
|
|
729
|
+
filename: this.model.question.name,
|
|
730
|
+
};
|
|
731
|
+
PlotlySetup.onImageSaving.fire(this.model, options);
|
|
732
|
+
Plotly.downloadImage(gd, options);
|
|
733
|
+
},
|
|
734
|
+
},
|
|
735
|
+
],
|
|
736
|
+
};
|
|
737
|
+
if (SelectBasePlotly.displayModeBar !== undefined) {
|
|
738
|
+
config.displayModeBar = SelectBasePlotly.displayModeBar;
|
|
739
|
+
}
|
|
740
|
+
this.patchConfigParameters(chartNode, plotlyOptions.traces, plotlyOptions.layout, config);
|
|
741
|
+
let options = {
|
|
742
|
+
traces: plotlyOptions.traces,
|
|
743
|
+
layout: plotlyOptions.layout,
|
|
744
|
+
data: answersData,
|
|
745
|
+
config: config,
|
|
746
|
+
};
|
|
747
|
+
PlotlySetup.onPlotCreating.fire(this.model, options);
|
|
748
|
+
const plot = Plotly.react(chartNode, options.traces, options.layout, options.config);
|
|
749
|
+
const plotlyChart = chartNode;
|
|
750
|
+
if (this.model instanceof SelectBase && this.model.supportSelection) {
|
|
751
|
+
const _model = this.model;
|
|
752
|
+
plotlyChart.removeAllListeners("plotly_click");
|
|
753
|
+
plotlyChart.on("plotly_click", (data) => {
|
|
754
|
+
if (data.points.length > 0) {
|
|
755
|
+
let itemText = "";
|
|
756
|
+
if (!plotlyOptions.hasSeries) {
|
|
757
|
+
itemText = Array.isArray(data.points[0].customdata)
|
|
758
|
+
? data.points[0].customdata[0]
|
|
759
|
+
: data.points[0].customdata;
|
|
760
|
+
const item = _model.getSelectedItemByText(itemText);
|
|
761
|
+
_model.setSelection(item);
|
|
762
|
+
}
|
|
763
|
+
else {
|
|
764
|
+
itemText = data.points[0].data.name;
|
|
765
|
+
const propertyLabel = data.points[0].label;
|
|
766
|
+
const seriesValues = this.model.getSeriesValues();
|
|
767
|
+
const seriesLabels = this.model.getSeriesLabels();
|
|
768
|
+
const propertyValue = seriesValues[seriesLabels.indexOf(propertyLabel)];
|
|
769
|
+
const selectedItem = _model.getSelectedItemByText(itemText);
|
|
770
|
+
const item = new ItemValue({ [propertyValue]: selectedItem.value }, propertyLabel + ": " + selectedItem.text);
|
|
771
|
+
_model.setSelection(item);
|
|
772
|
+
}
|
|
773
|
+
// const itemText = plotlyOptions.hasSeries
|
|
774
|
+
// ? data.points[0].data.name
|
|
775
|
+
// : Array.isArray(data.points[0].customdata)
|
|
776
|
+
// ? data.points[0].customdata[0]
|
|
777
|
+
// : data.points[0].customdata;
|
|
778
|
+
// const item: ItemValue = this.model.getSelectedItemByText(itemText);
|
|
779
|
+
// this.model.setSelection(item);
|
|
780
|
+
}
|
|
781
|
+
});
|
|
782
|
+
}
|
|
783
|
+
var setCursorOnDragLayer = (cursor) => {
|
|
784
|
+
const dragLayer = chartNode.getElementsByClassName("nsewdrag")[0];
|
|
785
|
+
dragLayer && (dragLayer.style.cursor = cursor);
|
|
786
|
+
};
|
|
787
|
+
!!plotlyChart.removeAllListeners && plotlyChart.removeAllListeners("plotly_hover");
|
|
788
|
+
plotlyChart.on("plotly_hover", () => setCursorOnDragLayer("pointer"));
|
|
789
|
+
!!plotlyChart.removeAllListeners && plotlyChart.removeAllListeners("plotly_unhover");
|
|
790
|
+
plotlyChart.on("plotly_unhover", () => setCursorOnDragLayer(""));
|
|
791
|
+
return [plot, plotlyOptions];
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
destroy(node) {
|
|
795
|
+
if (!!node) {
|
|
796
|
+
Plotly.purge(node);
|
|
797
|
+
}
|
|
798
|
+
this._chart = undefined;
|
|
3219
799
|
}
|
|
3220
800
|
}
|
|
3221
|
-
|
|
3222
|
-
const svgTemplate = `<svg style="display:none;">${iconsHtml}<svg>`;
|
|
801
|
+
VisualizerBase.chartAdapterType = PlotlyChartAdapter;
|
|
3223
802
|
|
|
3224
|
-
export {
|
|
803
|
+
export { BooleanPlotly as B, GaugePlotly as G, HistogramPlotly as H, MatrixDropdownGroupedPlotly as M, PivotPlotly as P, RankingPlotly as R, SelectBasePlotly as S, MatrixPlotly as a, PlotlyChartAdapter as b, PlotlySetup as c, chartTypes as d };
|
|
3225
804
|
//# sourceMappingURL=shared.mjs.map
|