survey-analytics 1.9.39 → 1.9.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "lint": "eslint ./src --quiet",
20
20
  "pre-push-check": "npm run lint && npm run test"
21
21
  },
22
- "version": "1.9.39",
22
+ "version": "1.9.40",
23
23
  "name": "survey-analytics",
24
24
  "description": "SurveyJS analytics Library.",
25
25
  "main": "survey.analytics.js",
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.39
2
+ * surveyjs - SurveyJS Analytics library v1.9.40
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -1139,6 +1139,7 @@ declare module "visualizationPanel" {
1139
1139
  export interface IVisualizationPanelOptions {
1140
1140
  /**
1141
1141
  * The number of label characters after which truncation starts.
1142
+ *
1142
1143
  * Set this property to -1 to disable truncation.
1143
1144
  *
1144
1145
  * Default value: 27
@@ -1158,6 +1159,7 @@ declare module "visualizationPanel" {
1158
1159
  dataProvider?: DataProvider;
1159
1160
  /**
1160
1161
  * Allows users to change the visibility of individual charts.
1162
+ *
1161
1163
  * This property adds a Hide button to each chart.
1162
1164
  *
1163
1165
  * Default value: `true`
@@ -1165,7 +1167,8 @@ declare module "visualizationPanel" {
1165
1167
  allowHideQuestions?: boolean;
1166
1168
  /**
1167
1169
  * Specifies whether to arrange charts based on the available screen space and allow users to reorder them via drag and drop.
1168
- * If this property is disabled, charts are displayed one under the other, and users cannot reorder them.
1170
+ *
1171
+ * If this property is disabled, charts are displayed one under the other and users cannot reorder them.
1169
1172
  *
1170
1173
  * Default value: `true`
1171
1174
  *
@@ -1176,6 +1179,7 @@ declare module "visualizationPanel" {
1176
1179
  allowDynamicLayout?: boolean;
1177
1180
  /**
1178
1181
  * A layout engine used to arrange charts on the Visualization Panel.
1182
+ *
1179
1183
  * You can use this property to integrate a third-party layout engine with SurveyJS Analytics.
1180
1184
  *
1181
1185
  * @see allowDynamicLayout
@@ -1183,6 +1187,7 @@ declare module "visualizationPanel" {
1183
1187
  layoutEngine?: LayoutEngine;
1184
1188
  /**
1185
1189
  * Allows users to switch between absolute and percentage values in bar charts.
1190
+ *
1186
1191
  * This property adds a Show Percentages button to each bar chart.
1187
1192
  *
1188
1193
  * Default value: `false`
@@ -1194,6 +1199,7 @@ declare module "visualizationPanel" {
1194
1199
  allowShowPercentages?: boolean;
1195
1200
  /**
1196
1201
  * Specifies whether bar charts display percentages in addition to absolute values.
1202
+ *
1197
1203
  * Users can change this property value if you enable the `allowShowPercentages` property.
1198
1204
  *
1199
1205
  * Default value: `false`
@@ -1205,7 +1211,8 @@ declare module "visualizationPanel" {
1205
1211
  showPercentages?: boolean;
1206
1212
  /**
1207
1213
  * Specifies whether bar charts display only percentages, without absolute values.
1208
- * Applies only if the `allowShowPercentages` or `showPercentages` property is enables.
1214
+ *
1215
+ * Applies only if the `allowShowPercentages` or `showPercentages` property is enabled.
1209
1216
  *
1210
1217
  * Default value: `false`
1211
1218
  *
@@ -1234,6 +1241,7 @@ declare module "visualizationPanel" {
1234
1241
  haveCommercialLicense?: boolean;
1235
1242
  /**
1236
1243
  * Allows users to sort answers by answer count. Applies only to bar and scatter charts.
1244
+ *
1237
1245
  * This property adds a Sorting dropdown to each bar and scatter chart.
1238
1246
  *
1239
1247
  * Default value: `true`
@@ -1256,6 +1264,7 @@ declare module "visualizationPanel" {
1256
1264
  answersOrder?: "default" | "asc" | "desc";
1257
1265
  /**
1258
1266
  * Allows users to hide answers with zero count in bar and scatter charts.
1267
+ *
1259
1268
  * This property adds a Hide Empty Answers button to each bar and scatter chart.
1260
1269
  *
1261
1270
  * Default value: `false`
@@ -1263,6 +1272,7 @@ declare module "visualizationPanel" {
1263
1272
  allowHideEmptyAnswers?: boolean;
1264
1273
  /**
1265
1274
  * Hides answers with zero count in bar and scatter charts.
1275
+ *
1266
1276
  * Users can change this property value if you enable the `allowHideEmptyAnswers` property.
1267
1277
  *
1268
1278
  * Default value: `false`
@@ -1272,6 +1282,7 @@ declare module "visualizationPanel" {
1272
1282
  hideEmptyAnswers?: boolean;
1273
1283
  /**
1274
1284
  * Allows users to select whether to show top 5, 10, or 20 answers by answer count.
1285
+ *
1275
1286
  * This property adds a Top N Answers dropdown to each chart.
1276
1287
  *
1277
1288
  * Default value: `false`
@@ -1279,6 +1290,7 @@ declare module "visualizationPanel" {
1279
1290
  allowTopNAnswers?: boolean;
1280
1291
  /**
1281
1292
  * Allows users to show the number of respondents who did not answer a particular question.
1293
+ *
1282
1294
  * This property adds a Show Missing Answers button to each chart.
1283
1295
  *
1284
1296
  * Default value: `false`
@@ -1307,13 +1319,14 @@ declare module "visualizationPanel" {
1307
1319
  defaultChartType?: string;
1308
1320
  /**
1309
1321
  * Allows users to transpose a visualized matrix question.
1310
- * This property adds a Transpose button to charts that visualize matrixes. When users select Per Values, matrix rows go to chart arguments, and matrix columns form chart series. When users select Per Columns, matrix rows form chart series, and matrix columns go to chart arguments.
1322
+ *
1323
+ * This property adds a Transpose button to charts that visualize matrixes. When users select Per Values, matrix rows go to chart arguments and matrix columns form chart series. When users select Per Columns, matrix rows form chart series and matrix columns go to chart arguments.
1311
1324
  *
1312
1325
  * Default value: `false`
1313
1326
  */
1314
1327
  allowTransposeData?: boolean;
1315
1328
  /**
1316
- * Allows users to cross-filter charts. The filter applies when users selects a series point.
1329
+ * Allows users to cross-filter charts. The filter applies when users select a series point.
1317
1330
  *
1318
1331
  * Default value: `true`
1319
1332
  */
@@ -1322,6 +1335,7 @@ declare module "visualizationPanel" {
1322
1335
  destroyContent?: Function;
1323
1336
  /**
1324
1337
  * Removes HTML tags from survey element titles.
1338
+ *
1325
1339
  * Survey element titles can contain HTML markup and are specified by users. An attacker can inject malicious code into the titles. To guard against it, keep this property set to `true`.
1326
1340
  *
1327
1341
  * Default value: `true`
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.39
2
+ * surveyjs - SurveyJS Analytics library v1.9.40
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */