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