igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.16 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 { AnchoredRadialSeriesDescription } from "./AnchoredRadialSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let RadialPieSeriesDescription = /*@__PURE__*/ (() => {
class RadialPieSeriesDescription extends AnchoredRadialSeriesDescription {
constructor() {
super();
this.h2 = 0;
this.h3 = 0;
this.h7 = null;
this.h6 = null;
this.h0 = false;
}
get_type() {
return "RadialPieSeries";
}
get radiusX() {
return this.h2;
}
set radiusX(a) {
this.h2 = a;
this.j("RadiusX");
}
get radiusY() {
return this.h3;
}
set radiusY(a) {
this.h3 = a;
this.j("RadiusY");
}
get legendLabelMemberPath() {
return this.h7;
}
set legendLabelMemberPath(a) {
this.h7 = a;
this.j("LegendLabelMemberPath");
}
get legendEmptyValuesMode() {
return this.h6;
}
set legendEmptyValuesMode(a) {
this.h6 = a;
this.j("LegendEmptyValuesMode");
}
get useInsetOutlines() {
return this.h0;
}
set useInsetOutlines(a) {
this.h0 = a;
this.j("UseInsetOutlines");
}
}
RadialPieSeriesDescription.$t = markType(RadialPieSeriesDescription, 'RadialPieSeriesDescription', AnchoredRadialSeriesDescription.$);
return RadialPieSeriesDescription;
})();