igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.88 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let RadialGaugeRangeDescription = /*@__PURE__*/ (() => {
class RadialGaugeRangeDescription extends Description {
constructor() {
super();
this.y = null;
this.z = null;
this.p = 0;
this.k = 0;
this.m = 0;
this.l = 0;
this.o = 0;
this.n = 0;
this.q = 0;
}
get_type() {
return "RadialGaugeRange";
}
get type() {
return this.get_type();
}
get brush() {
return this.y;
}
set brush(a) {
this.y = a;
this.j("Brush");
}
get outline() {
return this.z;
}
set outline(a) {
this.z = a;
this.j("Outline");
}
get startValue() {
return this.p;
}
set startValue(a) {
this.p = a;
this.j("StartValue");
}
get endValue() {
return this.k;
}
set endValue(a) {
this.k = a;
this.j("EndValue");
}
get innerStartExtent() {
return this.m;
}
set innerStartExtent(a) {
this.m = a;
this.j("InnerStartExtent");
}
get innerEndExtent() {
return this.l;
}
set innerEndExtent(a) {
this.l = a;
this.j("InnerEndExtent");
}
get outerStartExtent() {
return this.o;
}
set outerStartExtent(a) {
this.o = a;
this.j("OuterStartExtent");
}
get outerEndExtent() {
return this.n;
}
set outerEndExtent(a) {
this.n = a;
this.j("OuterEndExtent");
}
get strokeThickness() {
return this.q;
}
set strokeThickness(a) {
this.q = a;
this.j("StrokeThickness");
}
}
RadialGaugeRangeDescription.$t = markType(RadialGaugeRangeDescription, 'RadialGaugeRangeDescription', Description.$);
return RadialGaugeRangeDescription;
})();