@sapui5/sap.viz 1.96.23 → 1.96.25
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 +1 -1
- package/src/sap/viz/.library +1 -1
- package/src/sap/viz/library.js +1 -1
- package/src/sap/viz/ui5/core/BaseChartMetadata.js +1 -1
- package/src/sap/viz/ui5/data/FlattenedDataset.js +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_en.properties +4 -0
- package/src/sap/viz/ui5/messages/messagebundle_mk.properties +3 -0
- package/src/sap/viz/ui5/messages/messagebundle_sr.properties +3 -0
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-2021 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.96.
|
|
8
|
+
<version>1.96.25</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
|
@@ -341,6 +341,10 @@ sap.ui.define([
|
|
|
341
341
|
} else {
|
|
342
342
|
//analytic binding should use getTotalSize to return the correct total length
|
|
343
343
|
length = binding.getTotalSize ? binding.getTotalSize() : binding.getLength();
|
|
344
|
+
var V2ODataModel = sap.ui.require("sap/ui/model/odata/v2/ODataModel");
|
|
345
|
+
if (noPaging && length === -1 && V2ODataModel && (binding.getModel() instanceof V2ODataModel)) {
|
|
346
|
+
length = undefined;
|
|
347
|
+
}
|
|
344
348
|
}
|
|
345
349
|
}
|
|
346
350
|
if (this._bDataReceiveError) {
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
#This is the resource bundle for the sap.viz library
|
|
2
|
+
#
|
|
1
3
|
|
|
4
|
+
#XMSG: text which is displayed when charts can't be supported in the current browser
|
|
2
5
|
NO_SVG_SUPPORT=No SVG support
|
|
6
|
+
#XMSG: Default text which is displayed when no data is available for rendering
|
|
3
7
|
NO_DATA=No data
|