igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
36 lines (35 loc) • 1.32 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 { LinearGraphFrame } from "./LinearGraphFrame";
import { BulletGraphScaleFrame } from "./BulletGraphScaleFrame";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
export let BulletGraphFrame = /*@__PURE__*/ (() => {
class BulletGraphFrame extends LinearGraphFrame {
constructor() {
super();
this._c = null;
this.c = new BulletGraphScaleFrame();
}
get_c() {
return this._c;
}
set_c(a) {
this._c = a;
}
get c() {
return this.get_c();
}
set c(a) {
this.set_c(a);
}
}
BulletGraphFrame.$t = markType(BulletGraphFrame, 'BulletGraphFrame', LinearGraphFrame.$);
return BulletGraphFrame;
})();