igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
61 lines (60 loc) • 1.94 kB
JavaScript
import { __extends } from "tslib";
import { IgrPolarLineSeriesBase } from "./igr-polar-line-series-base";
import { PolarSplineAreaSeries } from "./PolarSplineAreaSeries";
/**
* Represents a IgxDataChartComponent polar spline area series.
*/
var IgrPolarSplineAreaSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrPolarSplineAreaSeries, _super);
function IgrPolarSplineAreaSeries(props) {
return _super.call(this, props) || this;
}
IgrPolarSplineAreaSeries.prototype.createImplementation = function () {
return new PolarSplineAreaSeries();
};
Object.defineProperty(IgrPolarSplineAreaSeries.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrPolarSplineAreaSeries.prototype, "isArea", {
/**
* Gets whether the current series shows an area shape.
*/
get: function () {
return this.i.ew;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrPolarSplineAreaSeries.prototype, "isSpline", {
/**
* Gets whether the current series shows a spline shape.
*/
get: function () {
return this.i.f1;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrPolarSplineAreaSeries.prototype, "stiffness", {
/**
* Gets or sets the Stiffness property.
*/
get: function () {
return this.i.ac0;
},
set: function (v) {
this.i.ac0 = +v;
},
enumerable: false,
configurable: true
});
return IgrPolarSplineAreaSeries;
}(IgrPolarLineSeriesBase));
export { IgrPolarSplineAreaSeries };