igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
69 lines (68 loc) • 2.15 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 { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let CalloutBadgeInfo = /*@__PURE__*/ (() => {
class CalloutBadgeInfo extends Base {
constructor() {
super(...arguments);
this._badgeThickness = 0;
this._badgeWidth = 0;
this._badgeHeight = 0;
this._badgeVisible = false;
this._badgeGap = 0;
this._badgeCorner = 0;
this._badgeImage = null;
}
get badgeThickness() {
return this._badgeThickness;
}
set badgeThickness(a) {
this._badgeThickness = a;
}
get badgeWidth() {
return this._badgeWidth;
}
set badgeWidth(a) {
this._badgeWidth = a;
}
get badgeHeight() {
return this._badgeHeight;
}
set badgeHeight(a) {
this._badgeHeight = a;
}
get badgeVisible() {
return this._badgeVisible;
}
set badgeVisible(a) {
this._badgeVisible = a;
}
get badgeGap() {
return this._badgeGap;
}
set badgeGap(a) {
this._badgeGap = a;
}
get badgeCorner() {
return this._badgeCorner;
}
set badgeCorner(a) {
this._badgeCorner = a;
}
get badgeImage() {
return this._badgeImage;
}
set badgeImage(a) {
this._badgeImage = a;
}
}
CalloutBadgeInfo.$t = /*@__PURE__*/ markType(CalloutBadgeInfo, 'CalloutBadgeInfo');
return CalloutBadgeInfo;
})();