@nebula.js/sn-bar-chart 2.0.2 → 2.0.4

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.
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-bar-chart:properties",
5
5
  "description": "Bar chart generic object definition",
6
- "version": "1.39.14",
6
+ "version": "2.0.4",
7
7
  "license": "MIT",
8
8
  "stability": "stable",
9
9
  "x-qlik-visibility": "public"
@@ -786,6 +786,9 @@
786
786
  },
787
787
  {
788
788
  "type": "#/definitions/CustomTooltipAttributes"
789
+ },
790
+ {
791
+ "type": "#/definitions/FirstDimensionDiffAttributes"
789
792
  }
790
793
  ]
791
794
  }
@@ -949,6 +952,63 @@
949
952
  ]
950
953
  }
951
954
  },
955
+ "ContinuousDimensionProperties": {
956
+ "kind": "object",
957
+ "entries": {
958
+ "period": {
959
+ "description": "Defines the base unit for the dimension's step or interval. This is combined with 'stepSize' to determine the final step duration or magnitude.",
960
+ "defaultValue": "'auto'",
961
+ "kind": "union",
962
+ "items": [
963
+ {
964
+ "kind": "literal",
965
+ "value": "'auto'"
966
+ },
967
+ {
968
+ "kind": "literal",
969
+ "value": "'seconds'"
970
+ },
971
+ {
972
+ "kind": "literal",
973
+ "value": "'minutes'"
974
+ },
975
+ {
976
+ "kind": "literal",
977
+ "value": "'hours'"
978
+ },
979
+ {
980
+ "kind": "literal",
981
+ "value": "'days'"
982
+ },
983
+ {
984
+ "kind": "literal",
985
+ "value": "'weeks'"
986
+ },
987
+ {
988
+ "kind": "literal",
989
+ "value": "'months'"
990
+ },
991
+ {
992
+ "kind": "literal",
993
+ "value": "'years'"
994
+ },
995
+ {
996
+ "kind": "literal",
997
+ "value": "'number'"
998
+ },
999
+ {
1000
+ "kind": "literal",
1001
+ "value": "'none'"
1002
+ }
1003
+ ]
1004
+ },
1005
+ "stepSize": {
1006
+ "description": "The step size for the 'period', defining the total step magnitude or duration. For time-based 'period's, this specifies the number of base units (e.g., 3 for a quarter when combined with 'month'). For 'number', it is the numeric increment.",
1007
+ "defaultValue": 1,
1008
+ "type": "number"
1009
+ }
1010
+ }
1011
+ },
952
1012
  "CustomTooltipAttributes": {
953
1013
  "description": "Extends `NxAttrExprDef`, see Engine API: `NxAttrExprDef`.",
954
1014
  "extends": [
@@ -1139,6 +1199,21 @@
1139
1199
  }
1140
1200
  }
1141
1201
  },
1202
+ "FirstDimensionDiffAttributes": {
1203
+ "description": "Extends `NxAttrExprDef`, see Engine API: `NxAttrExprDef`.",
1204
+ "extends": [
1205
+ {
1206
+ "type": "NxAttrExprDef"
1207
+ }
1208
+ ],
1209
+ "kind": "object",
1210
+ "entries": {
1211
+ "id": {
1212
+ "description": "One of: `firstDimensionDiff`: calculates the minimum value of the differences between the adjacent values of the first dimension. This serves as a unit or period of the first dimension.",
1213
+ "type": "string"
1214
+ }
1215
+ }
1216
+ },
1142
1217
  "FontStyling": {
1143
1218
  "kind": "object",
1144
1219
  "entries": {
@@ -1195,6 +1270,9 @@
1195
1270
  ],
1196
1271
  "kind": "object",
1197
1272
  "entries": {
1273
+ "continuous": {
1274
+ "type": "#/definitions/ContinuousDimensionProperties"
1275
+ },
1198
1276
  "othersLabel": {
1199
1277
  "kind": "union",
1200
1278
  "items": [
@@ -1563,4 +1641,4 @@
1563
1641
  }
1564
1642
  }
1565
1643
  }
1566
- }
1644
+ }