UNPKG

igniteui-angular-gauges

Version:

Ignite UI Angular gauge components.

42 lines (41 loc) 1.65 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 { LinearGraphFrame } from "./LinearGraphFrame"; import { BulletGraphScaleFrame } from "./BulletGraphScaleFrame"; import { markType } from "igniteui-angular-core"; /** * @hidden */ var BulletGraphFrame = /** @class */ /*@__PURE__*/ (function (_super) { __extends(BulletGraphFrame, _super); function BulletGraphFrame() { var _this = _super.call(this) || this; _this._c = null; _this.c = new BulletGraphScaleFrame(); return _this; } BulletGraphFrame.prototype.get_c = function () { return this._c; }; BulletGraphFrame.prototype.set_c = function (a) { this._c = a; }; Object.defineProperty(BulletGraphFrame.prototype, "c", { get: function () { return this.get_c(); }, set: function (a) { this.set_c(a); }, enumerable: false, configurable: true }); BulletGraphFrame.$t = markType(BulletGraphFrame, 'BulletGraphFrame', LinearGraphFrame.$); return BulletGraphFrame; }(LinearGraphFrame)); export { BulletGraphFrame };