igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
76 lines (75 loc) • 2.88 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 { UserBaseAnnotationDescription } from "./UserBaseAnnotationDescription";
import { markType } from "./type";
/**
* @hidden
*/
var UserPointAnnotationDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(UserPointAnnotationDescription, _super);
function UserPointAnnotationDescription() {
var _this = _super.call(this) || this;
_this.a7 = null;
_this.az = null;
_this.a2 = 0;
_this.a3 = 0;
return _this;
}
UserPointAnnotationDescription.prototype.get_type = function () {
return "UserPointAnnotation";
};
Object.defineProperty(UserPointAnnotationDescription.prototype, "targetSeriesRef", {
get: function () {
return this.a7;
},
set: function (a) {
this.a7 = a;
this.j("TargetSeriesRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserPointAnnotationDescription.prototype, "targetSeriesMatcher", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("TargetSeriesMatcher");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserPointAnnotationDescription.prototype, "xValue", {
get: function () {
return this.a2;
},
set: function (a) {
this.a2 = a;
this.j("XValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserPointAnnotationDescription.prototype, "yValue", {
get: function () {
return this.a3;
},
set: function (a) {
this.a3 = a;
this.j("YValue");
},
enumerable: false,
configurable: true
});
UserPointAnnotationDescription.$t = markType(UserPointAnnotationDescription, 'UserPointAnnotationDescription', UserBaseAnnotationDescription.$);
UserPointAnnotationDescription.__marshalByValue1 = true;
UserPointAnnotationDescription.__marshalByValueAlias1 = "UserPointAnnotation";
return UserPointAnnotationDescription;
}(UserBaseAnnotationDescription));
export { UserPointAnnotationDescription };