@sapui5/sap.chart 1.96.24 → 1.96.26
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/chart/.library
CHANGED
package/src/sap/chart/Chart.js
CHANGED
|
@@ -2058,9 +2058,10 @@ sap.ui.define([
|
|
|
2058
2058
|
oOData4SAPAnalyticsModel = this._createOData4SAPAnalyticsModel(oModel);
|
|
2059
2059
|
this._setIsAnalyticalProperty(oOData4SAPAnalyticsModel, oBindingInfo);
|
|
2060
2060
|
if (this.getIsAnalytical()) {
|
|
2061
|
+
var V2ODataModel = sap.ui.require("sap/ui/model/odata/v2/ODataModel");
|
|
2061
2062
|
if (oBindingInfo) {
|
|
2062
2063
|
var bNoPaging = true;
|
|
2063
|
-
if (oBindingInfo.length != undefined || this._isEnablePaging()) {
|
|
2064
|
+
if (oBindingInfo.length != undefined || this._isEnablePaging() || V2ODataModel && (oModel instanceof V2ODataModel)) {
|
|
2064
2065
|
bNoPaging = false;
|
|
2065
2066
|
}
|
|
2066
2067
|
oBindingInfo.parameters = jQuery.extend(true, {
|
|
@@ -2109,9 +2110,10 @@ sap.ui.define([
|
|
|
2109
2110
|
oOData4SAPAnalyticsModel = this._createOData4SAPAnalyticsModel(oModel);
|
|
2110
2111
|
this._setIsAnalyticalProperty(oOData4SAPAnalyticsModel, oBindingInfo);
|
|
2111
2112
|
if (this.getIsAnalytical()) {
|
|
2113
|
+
var V2ODataModel = sap.ui.require("sap/ui/model/odata/v2/ODataModel");
|
|
2112
2114
|
if (oBindingInfo) {
|
|
2113
2115
|
var bNoPaging = true;
|
|
2114
|
-
if (oBindingInfo.length != undefined || this._isEnablePaging()) {
|
|
2116
|
+
if (oBindingInfo.length != undefined || this._isEnablePaging() || V2ODataModel && (oModel instanceof V2ODataModel)) {
|
|
2115
2117
|
bNoPaging = false;
|
|
2116
2118
|
}
|
|
2117
2119
|
oBindingInfo.parameters = jQuery.extend(true, {
|