igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
201 lines (200 loc) • 6.38 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var DoughnutChartDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DoughnutChartDescription, _super);
function DoughnutChartDescription() {
var _this = _super.call(this) || this;
_this.ac = null;
_this.n = false;
_this.o = false;
_this.m = false;
_this.k = null;
_this.t = 0;
_this.ae = null;
_this.af = null;
_this.w = 0;
_this.v = 0;
_this.u = 0;
_this.s = 0;
_this.ag = null;
_this.ad = null;
return _this;
}
Object.defineProperty(DoughnutChartDescription.prototype, "background", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("Background");
},
enumerable: false,
configurable: true
});
DoughnutChartDescription.prototype.get_type = function () {
return "DoughnutChart";
};
Object.defineProperty(DoughnutChartDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "allowSliceSelection", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("AllowSliceSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "isSurfaceInteractionDisabled", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("IsSurfaceInteractionDisabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "allowSliceExplosion", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("AllowSliceExplosion");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "series", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Series");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "innerExtent", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("InnerExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "selectedSliceFill", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("SelectedSliceFill");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "selectedSliceStroke", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("SelectedSliceStroke");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "selectedSliceStrokeThickness", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("SelectedSliceStrokeThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "selectedSliceOpacity", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("SelectedSliceOpacity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "pixelScalingRatio", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("PixelScalingRatio");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "actualPixelScalingRatio", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ActualPixelScalingRatio");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "sliceClickRef", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("SliceClickRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DoughnutChartDescription.prototype, "holeDimensionsChangedRef", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("HoleDimensionsChangedRef");
},
enumerable: false,
configurable: true
});
DoughnutChartDescription.$t = markType(DoughnutChartDescription, 'DoughnutChartDescription', Description.$);
return DoughnutChartDescription;
}(Description));
export { DoughnutChartDescription };