@sapui5/sap.viz 1.130.0 → 1.131.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.
package/package.json
CHANGED
package/src/sap/viz/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.131.0</version>
|
|
9
9
|
|
|
10
10
|
<documentation>Chart controls based on the SAP BI CVOM charting library</documentation>
|
|
11
11
|
|
package/src/sap/viz/library.js
CHANGED
|
@@ -31444,7 +31444,7 @@ define('sap/viz/chart/scales/ScaleTypeHandler',[ 'sap/viz/framework/common/util/
|
|
|
31444
31444
|
var stackedData = [];
|
|
31445
31445
|
var lineData = [];
|
|
31446
31446
|
for (var j in values){
|
|
31447
|
-
if (values[j] && values.hasOwnProperty(j)) {
|
|
31447
|
+
if ((values[j] || (values[j] === 0)) && values.hasOwnProperty(j)) {
|
|
31448
31448
|
if (color && color[j] && dataShape){
|
|
31449
31449
|
var shape = dataShape[color[j].mndIndex || 0];
|
|
31450
31450
|
if (shape === "bar"){
|