UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

85 lines (84 loc) 3.02 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-angular-core"; import { StringBuilder } from "igniteui-angular-core"; /** * @hidden */ var LinearGraphToolTipVisualData = /** @class */ /*@__PURE__*/ (function (_super) { __extends(LinearGraphToolTipVisualData, _super); function LinearGraphToolTipVisualData() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._item = null; _this._outline = null; _this._itemBrush = null; _this._thickness = 0; return _this; } Object.defineProperty(LinearGraphToolTipVisualData.prototype, "item", { get: function () { return this._item; }, set: function (a) { this._item = a; }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphToolTipVisualData.prototype, "outline", { get: function () { return this._outline; }, set: function (a) { this._outline = a; }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphToolTipVisualData.prototype, "itemBrush", { get: function () { return this._itemBrush; }, set: function (a) { this._itemBrush = a; }, enumerable: false, configurable: true }); Object.defineProperty(LinearGraphToolTipVisualData.prototype, "thickness", { get: function () { return this._thickness; }, set: function (a) { this._thickness = a; }, enumerable: false, configurable: true }); LinearGraphToolTipVisualData.prototype.serialize = function () { var a = new StringBuilder(0); a.l("{ item: "); if (this.item != null) { a.l(this.item.serialize()); } a.l(", "); a.l("outline: "); a.l(this.outline.serialize()); a.l(", "); a.l("itemBrush: "); a.l(this.itemBrush.serialize()); a.l(", "); a.l("thickness: "); a.l(this.thickness.toString()); a.l("}"); return a.toString(); }; LinearGraphToolTipVisualData.$t = markType(LinearGraphToolTipVisualData, 'LinearGraphToolTipVisualData'); return LinearGraphToolTipVisualData; }(Base)); export { LinearGraphToolTipVisualData };