igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
54 lines (53 loc) • 1.84 kB
JavaScript
import { __extends } from "tslib";
import { UnknownValuePlotting_$type } from "igniteui-react-core";
import { IgrAnchoredRadialSeries } from "./igr-anchored-radial-series";
import { RadialAreaSeries } from "./RadialAreaSeries";
import { ensureEnum } from "igniteui-react-core";
/**
* Represents a IgxDataChartComponent radial area series.
*/
var IgrRadialAreaSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrRadialAreaSeries, _super);
function IgrRadialAreaSeries(props) {
return _super.call(this, props) || this;
}
IgrRadialAreaSeries.prototype.createImplementation = function () {
return new RadialAreaSeries();
};
Object.defineProperty(IgrRadialAreaSeries.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrRadialAreaSeries.prototype, "isArea", {
/**
* Gets whether the current series shows an area shape.
*/
get: function () {
return this.i.ew;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrRadialAreaSeries.prototype, "unknownValuePlotting", {
/**
* Determines how unknown values will be plotted on the chart.
* Null and Double.NaN are two examples of unknown values.
*/
get: function () {
return this.i.adz;
},
set: function (v) {
this.i.adz = ensureEnum(UnknownValuePlotting_$type, v);
},
enumerable: false,
configurable: true
});
return IgrRadialAreaSeries;
}(IgrAnchoredRadialSeries));
export { IgrRadialAreaSeries };