igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
110 lines (109 loc) • 3.8 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.gs = null;
_this.gt = null;
_this.gn = false;
_this.gm = false;
_this.gu = null;
_this.gv = null;
_this.gq = 0;
return _this;
}
ItemToolTipLayerDescription.prototype.get_type = function () {
return "ItemToolTipLayer";
};
Object.defineProperty(ItemToolTipLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.j("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "useInterpolation", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.j("UseInterpolation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "skipUnknownValues", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("SkipUnknownValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "toolTipBackground", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.j("ToolTipBackground");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "toolTipBorderBrush", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.j("ToolTipBorderBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ItemToolTipLayerDescription.prototype, "toolTipBorderThickness", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("ToolTipBorderThickness");
},
enumerable: false,
configurable: true
});
ItemToolTipLayerDescription.$t = markType(ItemToolTipLayerDescription, 'ItemToolTipLayerDescription', AnnotationLayerDescription.$);
return ItemToolTipLayerDescription;
}(AnnotationLayerDescription));
export { ItemToolTipLayerDescription };