@nebula.js/sn-combo-chart 1.33.11 → 1.35.0

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.
@@ -14,6 +14,9 @@
14
14
  - [.footnote](#properties.footnote) : <code>string</code> \| <code>StringExpression</code>
15
15
  - [.barGrouping](#properties.barGrouping) : <code>object</code>
16
16
  - [.grouping](#properties.barGrouping.grouping) : <code>&#x27;stacked&#x27;</code> \| <code>&#x27;grouped&#x27;</code>
17
+ - [.lineType](#properties.lineType) : <code>&#x27;line&#x27;</code> \| <code>&#x27;area&#x27;</code>
18
+ - [.stackedArea](#properties.stackedArea) : <code>boolean</code>
19
+ - [.separateStacking](#properties.separateStacking) : <code>boolean</code>
17
20
  - [.orientation](#properties.orientation) : <code>&#x27;vertical&#x27;</code> \| <code>&#x27;horizontal&#x27;</code>
18
21
  - [.scrollStartPos](#properties.scrollStartPos) : <code>number</code>
19
22
  - [.nullMode](#properties.nullMode) : <code>&#x27;gap&#x27;</code> \| <code>&#x27;connect&#x27;</code> \| <code>&#x27;zero&#x27;</code>
@@ -164,6 +167,29 @@ Group setting
164
167
 
165
168
  **Kind**: static property of [<code>barGrouping</code>](#properties.barGrouping)
166
169
  **Default**: <code>&quot;grouped&quot;</code>
170
+ <a name="properties.lineType"></a>
171
+
172
+ ### properties.lineType : <code>&#x27;line&#x27;</code> \| <code>&#x27;area&#x27;</code>
173
+
174
+ Type of line chart.
175
+
176
+ **Kind**: static property of [<code>properties</code>](#properties)
177
+ <a name="properties.stackedArea"></a>
178
+
179
+ ### properties.stackedArea : <code>boolean</code>
180
+
181
+ Stack areas. Dependent of lineType property.
182
+
183
+ **Kind**: static property of [<code>properties</code>](#properties)
184
+ **Default**: <code>false</code>
185
+ <a name="properties.separateStacking"></a>
186
+
187
+ ### properties.separateStacking : <code>boolean</code>
188
+
189
+ Stack positive and negative values separately. Dependent of lineType property.
190
+
191
+ **Kind**: static property of [<code>properties</code>](#properties)
192
+ **Default**: <code>true</code>
167
193
  <a name="properties.orientation"></a>
168
194
 
169
195
  ### properties.orientation : <code>&#x27;vertical&#x27;</code> \| <code>&#x27;horizontal&#x27;</code>
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-combo-chart:plugins",
5
5
  "description": "Combo chart plugins API definitions",
6
- "version": "1.33.11",
6
+ "version": "1.34.0",
7
7
  "license": "MIT",
8
8
  "stability": "experimental",
9
9
  "x-qlik-visibility": "public"
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-combo-chart:properties",
5
5
  "description": "Combo chart generic object definition",
6
- "version": "1.33.11",
6
+ "version": "1.34.0",
7
7
  "license": "MIT",
8
8
  "stability": "stable",
9
9
  "x-qlik-visibility": "public"
@@ -379,6 +379,21 @@
379
379
  },
380
380
  "kind": "object"
381
381
  },
382
+ "lineType": {
383
+ "description": "Type of line chart.",
384
+ "defaultValue": "line",
385
+ "kind": "union",
386
+ "items": [
387
+ {
388
+ "kind": "literal",
389
+ "value": "'line'"
390
+ },
391
+ {
392
+ "kind": "literal",
393
+ "value": "'area'"
394
+ }
395
+ ]
396
+ },
382
397
  "measureAxes": {
383
398
  "description": "Measure axes settings. Must be an array with 2 measureAxis objects.",
384
399
  "kind": "array",
@@ -493,6 +508,11 @@
493
508
  "defaultValue": 0,
494
509
  "type": "number"
495
510
  },
511
+ "separateStacking": {
512
+ "description": "Stack positive and negative values separately. Dependent of lineType property.",
513
+ "defaultValue": true,
514
+ "type": "boolean"
515
+ },
496
516
  "showMiniChartForContinuousAxis": {
497
517
  "description": "Chart axis setting to turn on/off the mini chart for continuous axis.",
498
518
  "defaultValue": true,
@@ -504,6 +524,11 @@
504
524
  "defaultValue": true,
505
525
  "type": "boolean"
506
526
  },
527
+ "stackedArea": {
528
+ "description": "Stack areas. Dependent of lineType property.",
529
+ "defaultValue": false,
530
+ "type": "boolean"
531
+ },
507
532
  "subtitle": {
508
533
  "description": "Visualization subtitle.",
509
534
  "optional": true,