@sapui5/sap.viz 1.133.0 → 1.133.2
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.133.
|
|
8
|
+
<version>1.133.2</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
|
@@ -42678,7 +42678,10 @@ define('sap/viz/chart/components/datalabels/DataLabels',[
|
|
|
42678
42678
|
dp = this.setExtraDataOfDataPoint(DataGraphics, dp, dataLabelGroup);
|
|
42679
42679
|
}
|
|
42680
42680
|
if (distributeByLength) {
|
|
42681
|
-
step = Math.ceil((isDistributeByHeight ? labelBBox.height : labelBBox.width)/dPLength);
|
|
42681
|
+
step = Math.ceil((isDistributeByHeight ? labelBBox.height : labelBBox.width)/dPLength);
|
|
42682
|
+
if (step === 0) {
|
|
42683
|
+
break;
|
|
42684
|
+
}
|
|
42682
42685
|
}
|
|
42683
42686
|
}
|
|
42684
42687
|
}
|