igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
99 lines (98 loc) • 3.24 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, __read, __spreadArray } from "tslib";
import { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
var CalloutBadgeInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CalloutBadgeInfo, _super);
function CalloutBadgeInfo() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this._badgeThickness = 0;
_this._badgeWidth = 0;
_this._badgeHeight = 0;
_this._badgeVisible = false;
_this._badgeGap = 0;
_this._badgeCorner = 0;
_this._badgeImage = null;
return _this;
}
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeThickness", {
get: function () {
return this._badgeThickness;
},
set: function (a) {
this._badgeThickness = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeWidth", {
get: function () {
return this._badgeWidth;
},
set: function (a) {
this._badgeWidth = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeHeight", {
get: function () {
return this._badgeHeight;
},
set: function (a) {
this._badgeHeight = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeVisible", {
get: function () {
return this._badgeVisible;
},
set: function (a) {
this._badgeVisible = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeGap", {
get: function () {
return this._badgeGap;
},
set: function (a) {
this._badgeGap = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeCorner", {
get: function () {
return this._badgeCorner;
},
set: function (a) {
this._badgeCorner = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutBadgeInfo.prototype, "badgeImage", {
get: function () {
return this._badgeImage;
},
set: function (a) {
this._badgeImage = a;
},
enumerable: false,
configurable: true
});
CalloutBadgeInfo.$t = markType(CalloutBadgeInfo, 'CalloutBadgeInfo');
return CalloutBadgeInfo;
}(Base));
export { CalloutBadgeInfo };