survey-analytics 1.9.37 → 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/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  SurveyJS Analytics visualizes survey results and allows users to analyze them.
15
15
 
16
- ![SurveyJS Analytics](docs/images/survey-analytics-note.png)
16
+ ![SurveyJS Analytics](docs/images/survey-analytics-overview.png)
17
17
 
18
18
  ## Features
19
19
 
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.37",
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.37
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
  *
@@ -1226,11 +1233,15 @@ declare module "visualizationPanel" {
1226
1233
  percentagePrecision?: number;
1227
1234
  /**
1228
1235
  * Removes the Free Trial bar.
1236
+ *
1237
+ * Default value: `false`
1238
+ *
1229
1239
  * **IMPORTANT**: You can enable this property only if you have a SurveyJS Analytics commercial license. It is illegal to enable this property without a license.
1230
1240
  */
1231
1241
  haveCommercialLicense?: boolean;
1232
1242
  /**
1233
1243
  * Allows users to sort answers by answer count. Applies only to bar and scatter charts.
1244
+ *
1234
1245
  * This property adds a Sorting dropdown to each bar and scatter chart.
1235
1246
  *
1236
1247
  * Default value: `true`
@@ -1253,6 +1264,7 @@ declare module "visualizationPanel" {
1253
1264
  answersOrder?: "default" | "asc" | "desc";
1254
1265
  /**
1255
1266
  * Allows users to hide answers with zero count in bar and scatter charts.
1267
+ *
1256
1268
  * This property adds a Hide Empty Answers button to each bar and scatter chart.
1257
1269
  *
1258
1270
  * Default value: `false`
@@ -1260,6 +1272,7 @@ declare module "visualizationPanel" {
1260
1272
  allowHideEmptyAnswers?: boolean;
1261
1273
  /**
1262
1274
  * Hides answers with zero count in bar and scatter charts.
1275
+ *
1263
1276
  * Users can change this property value if you enable the `allowHideEmptyAnswers` property.
1264
1277
  *
1265
1278
  * Default value: `false`
@@ -1269,6 +1282,7 @@ declare module "visualizationPanel" {
1269
1282
  hideEmptyAnswers?: boolean;
1270
1283
  /**
1271
1284
  * Allows users to select whether to show top 5, 10, or 20 answers by answer count.
1285
+ *
1272
1286
  * This property adds a Top N Answers dropdown to each chart.
1273
1287
  *
1274
1288
  * Default value: `false`
@@ -1276,6 +1290,7 @@ declare module "visualizationPanel" {
1276
1290
  allowTopNAnswers?: boolean;
1277
1291
  /**
1278
1292
  * Allows users to show the number of respondents who did not answer a particular question.
1293
+ *
1279
1294
  * This property adds a Show Missing Answers button to each chart.
1280
1295
  *
1281
1296
  * Default value: `false`
@@ -1304,13 +1319,14 @@ declare module "visualizationPanel" {
1304
1319
  defaultChartType?: string;
1305
1320
  /**
1306
1321
  * Allows users to transpose a visualized matrix question.
1307
- * 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.
1308
1324
  *
1309
1325
  * Default value: `false`
1310
1326
  */
1311
1327
  allowTransposeData?: boolean;
1312
1328
  /**
1313
- * 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.
1314
1330
  *
1315
1331
  * Default value: `true`
1316
1332
  */
@@ -1319,6 +1335,7 @@ declare module "visualizationPanel" {
1319
1335
  destroyContent?: Function;
1320
1336
  /**
1321
1337
  * Removes HTML tags from survey element titles.
1338
+ *
1322
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`.
1323
1340
  *
1324
1341
  * Default value: `true`
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Analytics library v1.9.37
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
  */