igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
38 lines (37 loc) • 1.09 kB
JavaScript
import { UnknownValuePlotting_$type } from "igniteui-react-core";
import { IgrPolarLineSeriesBase } from "./igr-polar-line-series-base";
import { PolarLineSeries } from "./PolarLineSeries";
import { ensureEnum } from "igniteui-react-core";
/**
* Represents a IgxDataChartComponent polar line series.
*/
export class IgrPolarLineSeries extends IgrPolarLineSeriesBase {
createImplementation() {
return new PolarLineSeries();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
/**
* Gets whether the current series shows only line shapes.
*/
get isLineOnly() {
return this.i.fl;
}
/**
* 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.ac6;
}
set unknownValuePlotting(v) {
this.i.ac6 = ensureEnum(UnknownValuePlotting_$type, v);
}
}