UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

66 lines (65 loc) 2.4 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"; /** * @hidden */ var ProportionalRadialLabelContext = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ProportionalRadialLabelContext, _super); function ProportionalRadialLabelContext() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._value = 0; _this._label = null; _this._percent = 0; _this._item = null; return _this; } Object.defineProperty(ProportionalRadialLabelContext.prototype, "value", { get: function () { return this._value; }, set: function (a) { this._value = a; }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalRadialLabelContext.prototype, "label", { get: function () { return this._label; }, set: function (a) { this._label = a; }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalRadialLabelContext.prototype, "percent", { get: function () { return this._percent; }, set: function (a) { this._percent = a; }, enumerable: false, configurable: true }); Object.defineProperty(ProportionalRadialLabelContext.prototype, "item", { get: function () { return this._item; }, set: function (a) { this._item = a; }, enumerable: false, configurable: true }); ProportionalRadialLabelContext.$t = markType(ProportionalRadialLabelContext, 'ProportionalRadialLabelContext'); return ProportionalRadialLabelContext; }(Base)); export { ProportionalRadialLabelContext };