@sapui5/sap.chart 1.112.2 → 1.114.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/chart/.library
CHANGED
|
@@ -63,9 +63,21 @@ sap.ui.define([
|
|
|
63
63
|
TimeDimension.prototype.setTimeUnit = ChartUtils.makeNotifyParentProperty("timeUnit");
|
|
64
64
|
TimeDimension.prototype.setFiscalYearPeriodCount = ChartUtils.makeNotifyParentProperty("fiscalYearPeriodCount");
|
|
65
65
|
TimeDimension.prototype.setProjectedValueStartTime = ChartUtils.makeNotifyParentProperty("projectedValueStartTime");
|
|
66
|
+
/**
|
|
67
|
+
* Set a new UTC value for the time dimension
|
|
68
|
+
*
|
|
69
|
+
* @private
|
|
70
|
+
* @param {boolean} bUTC set the time dimension data to be parsed with UTC option true/false
|
|
71
|
+
*/
|
|
66
72
|
TimeDimension.prototype._setIsUTC = function(bUTC) {
|
|
67
73
|
this._bUTC = bUTC;
|
|
68
74
|
};
|
|
75
|
+
/**
|
|
76
|
+
* get the time dimension data UTC value
|
|
77
|
+
*
|
|
78
|
+
* @private
|
|
79
|
+
* @return {boolean} true if the time dimension data shoud be parsed with UTC option, otherwise return false
|
|
80
|
+
*/
|
|
69
81
|
TimeDimension.prototype._getIsUTC = function() {
|
|
70
82
|
return this._bUTC;
|
|
71
83
|
};
|