igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.65 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ItemToolTipLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ItemToolTipLayerDescription, _super);
function ItemToolTipLayerDescription() {
var _this = _super.call(this) || this;
_this.gj = null;
_this.gk = null;
_this.gg = false;
_this.gf = false;
return _this;
}
ItemToolTipLayerDescription.prototype.get_type = function () {
return "ItemToolTipLayer";
};
Object.defineProperty(ItemToolTipLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gj;
},
set: function (a) {
this.gj = a;
this.g("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gk;
},
set: function (a) {
this.gk = a;
this.g("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "useInterpolation", {
get: function () {
return this.gg;
},
set: function (a) {
this.gg = a;
this.g("UseInterpolation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "skipUnknownValues", {
get: function () {
return this.gf;
},
set: function (a) {
this.gf = a;
this.g("SkipUnknownValues");
},
enumerable: false,
configurable: true
});
ItemToolTipLayerDescription.$t = markType(ItemToolTipLayerDescription, 'ItemToolTipLayerDescription', AnnotationLayerDescription.$);
return ItemToolTipLayerDescription;
}(AnnotationLayerDescription));
export { ItemToolTipLayerDescription };