igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
121 lines (120 loc) • 3.97 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 { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
var CalloutStyleUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CalloutStyleUpdatingEventArgs, _super);
function CalloutStyleUpdatingEventArgs() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._xValue = null;
_this._yValue = null;
_this._item = null;
_this._series = null;
_this._background = null;
_this._textColor = null;
_this._outline = null;
_this._leaderBrush = null;
_this._strokeThickness = 0;
return _this;
}
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "xValue", {
get: function () {
return this._xValue;
},
set: function (a) {
this._xValue = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "yValue", {
get: function () {
return this._yValue;
},
set: function (a) {
this._yValue = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "item", {
get: function () {
return this._item;
},
set: function (a) {
this._item = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "series", {
get: function () {
return this._series;
},
set: function (a) {
this._series = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "background", {
get: function () {
return this._background;
},
set: function (a) {
this._background = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "textColor", {
get: function () {
return this._textColor;
},
set: function (a) {
this._textColor = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "outline", {
get: function () {
return this._outline;
},
set: function (a) {
this._outline = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "leaderBrush", {
get: function () {
return this._leaderBrush;
},
set: function (a) {
this._leaderBrush = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(CalloutStyleUpdatingEventArgs.prototype, "strokeThickness", {
get: function () {
return this._strokeThickness;
},
set: function (a) {
this._strokeThickness = a;
},
enumerable: false,
configurable: true
});
CalloutStyleUpdatingEventArgs.$t = markType(CalloutStyleUpdatingEventArgs, 'CalloutStyleUpdatingEventArgs');
return CalloutStyleUpdatingEventArgs;
}(Base));
export { CalloutStyleUpdatingEventArgs };