UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

101 lines (100 loc) 3.77 kB
/* 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 { CategoryAxisRenderingParameters } from "./CategoryAxisRenderingParameters"; import { IPolarRadialRenderingParameters_$type } from "./IPolarRadialRenderingParameters"; import { markType } from "igniteui-angular-core"; /** * @hidden */ var RadialAxisRenderingParameters = /** @class */ /*@__PURE__*/ (function (_super) { __extends(RadialAxisRenderingParameters, _super); function RadialAxisRenderingParameters() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._minLength = 0; _this._maxLength = 0; _this._center = null; _this._crossingAngleRadians = 0; _this._minAngle = 0; _this._maxAngle = 0; _this._effectiveMaximum = 0; return _this; } Object.defineProperty(RadialAxisRenderingParameters.prototype, "minLength", { get: function () { return this._minLength; }, set: function (a) { this._minLength = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "maxLength", { get: function () { return this._maxLength; }, set: function (a) { this._maxLength = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "center", { get: function () { return this._center; }, set: function (a) { this._center = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "crossingAngleRadians", { get: function () { return this._crossingAngleRadians; }, set: function (a) { this._crossingAngleRadians = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "minAngle", { get: function () { return this._minAngle; }, set: function (a) { this._minAngle = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "maxAngle", { get: function () { return this._maxAngle; }, set: function (a) { this._maxAngle = a; }, enumerable: false, configurable: true }); Object.defineProperty(RadialAxisRenderingParameters.prototype, "effectiveMaximum", { get: function () { return this._effectiveMaximum; }, set: function (a) { this._effectiveMaximum = a; }, enumerable: false, configurable: true }); RadialAxisRenderingParameters.$t = markType(RadialAxisRenderingParameters, 'RadialAxisRenderingParameters', CategoryAxisRenderingParameters.$, [IPolarRadialRenderingParameters_$type]); return RadialAxisRenderingParameters; }(CategoryAxisRenderingParameters)); export { RadialAxisRenderingParameters };