igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.86 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 UserAnnotationToolTipLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(UserAnnotationToolTipLayerDescription, _super);
function UserAnnotationToolTipLayerDescription() {
var _this = _super.call(this) || this;
_this.gp = null;
_this.gq = null;
_this.gm = false;
_this.go = null;
return _this;
}
UserAnnotationToolTipLayerDescription.prototype.get_type = function () {
return "UserAnnotationToolTipLayer";
};
Object.defineProperty(UserAnnotationToolTipLayerDescription.prototype, "targetSeriesName", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("TargetSeriesName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationToolTipLayerDescription.prototype, "targetSeriesRef", {
get: function () {
return this.gq;
},
set: function (a) {
this.gq = a;
this.j("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationToolTipLayerDescription.prototype, "skipUnknownValues", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("SkipUnknownValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationToolTipLayerDescription.prototype, "contentUpdatingRef", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("ContentUpdatingRef");
},
enumerable: false,
configurable: true
});
UserAnnotationToolTipLayerDescription.$t = markType(UserAnnotationToolTipLayerDescription, 'UserAnnotationToolTipLayerDescription', AnnotationLayerDescription.$);
return UserAnnotationToolTipLayerDescription;
}(AnnotationLayerDescription));
export { UserAnnotationToolTipLayerDescription };