UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

176 lines (175 loc) 5.81 kB
/* 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 CalloutRenderStyleUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CalloutRenderStyleUpdatingEventArgs, _super); function CalloutRenderStyleUpdatingEventArgs() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._xValue = null; _this._yValue = null; _this._labelPositionX = 0; _this._labelPositionY = 0; _this._targetPositionX = 0; _this._targetPositionY = 0; _this._actualPosition = 0; _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(CalloutRenderStyleUpdatingEventArgs.prototype, "xValue", { get: function () { return this._xValue; }, set: function (a) { this._xValue = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "yValue", { get: function () { return this._yValue; }, set: function (a) { this._yValue = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "labelPositionX", { get: function () { return this._labelPositionX; }, set: function (a) { this._labelPositionX = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "labelPositionY", { get: function () { return this._labelPositionY; }, set: function (a) { this._labelPositionY = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "targetPositionX", { get: function () { return this._targetPositionX; }, set: function (a) { this._targetPositionX = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "targetPositionY", { get: function () { return this._targetPositionY; }, set: function (a) { this._targetPositionY = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "actualPosition", { get: function () { return this._actualPosition; }, set: function (a) { this._actualPosition = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "item", { get: function () { return this._item; }, set: function (a) { this._item = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "series", { get: function () { return this._series; }, set: function (a) { this._series = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "background", { get: function () { return this._background; }, set: function (a) { this._background = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "textColor", { get: function () { return this._textColor; }, set: function (a) { this._textColor = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "outline", { get: function () { return this._outline; }, set: function (a) { this._outline = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "leaderBrush", { get: function () { return this._leaderBrush; }, set: function (a) { this._leaderBrush = a; }, enumerable: false, configurable: true }); Object.defineProperty(CalloutRenderStyleUpdatingEventArgs.prototype, "strokeThickness", { get: function () { return this._strokeThickness; }, set: function (a) { this._strokeThickness = a; }, enumerable: false, configurable: true }); CalloutRenderStyleUpdatingEventArgs.$t = markType(CalloutRenderStyleUpdatingEventArgs, 'CalloutRenderStyleUpdatingEventArgs'); return CalloutRenderStyleUpdatingEventArgs; }(Base)); export { CalloutRenderStyleUpdatingEventArgs };