igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.54 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var UserAnnotationLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(UserAnnotationLayerDescription, _super);
function UserAnnotationLayerDescription() {
var _this = _super.call(this) || this;
_this.fa = null;
_this.fg = null;
_this.fc = null;
_this.fe = null;
_this.ff = null;
_this.fd = null;
return _this;
}
UserAnnotationLayerDescription.prototype.get_type = function () {
return "UserAnnotationLayer";
};
Object.defineProperty(UserAnnotationLayerDescription.prototype, "annotations", {
get: function () {
return this.fa;
},
set: function (a) {
this.fa = a;
this.j("Annotations");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationLayerDescription.prototype, "userAnnotationInformationRequestedRef", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.j("UserAnnotationInformationRequestedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationLayerDescription.prototype, "stylingAxisAnnotationRef", {
get: function () {
return this.fc;
},
set: function (a) {
this.fc = a;
this.j("StylingAxisAnnotationRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationLayerDescription.prototype, "stylingSliceAnnotationRef", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.j("StylingSliceAnnotationRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationLayerDescription.prototype, "stylingStripAnnotationRef", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.j("StylingStripAnnotationRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAnnotationLayerDescription.prototype, "stylingPointAnnotationRef", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.j("StylingPointAnnotationRef");
},
enumerable: false,
configurable: true
});
UserAnnotationLayerDescription.$t = markType(UserAnnotationLayerDescription, 'UserAnnotationLayerDescription', SeriesDescription.$);
return UserAnnotationLayerDescription;
}(SeriesDescription));
export { UserAnnotationLayerDescription };