UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

38 lines (37 loc) 1.09 kB
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. */ export class IgrRadialAreaSeries extends IgrAnchoredRadialSeries { createImplementation() { return new RadialAreaSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } /** * Gets whether the current series shows an area shape. */ get isArea() { return this.i.ew; } /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. */ get unknownValuePlotting() { return this.i.adz; } set unknownValuePlotting(v) { this.i.adz = ensureEnum(UnknownValuePlotting_$type, v); } }