UNPKG

igniteui-react-charts

Version:

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

32 lines (31 loc) 1.28 kB
import { UnknownValuePlotting } from "igniteui-react-core"; import { IgrPolarLineSeriesBase, IIgrPolarLineSeriesBaseProps } from "./igr-polar-line-series-base"; import { PolarLineSeries } from "./PolarLineSeries"; /** * Represents a IgxDataChartComponent polar line series. */ export declare class IgrPolarLineSeries extends IgrPolarLineSeriesBase<IIgrPolarLineSeriesProps> { protected createImplementation(): PolarLineSeries; /** * @hidden */ get i(): PolarLineSeries; constructor(props: IIgrPolarLineSeriesProps); /** * Gets whether the current series shows only line shapes. */ get isLineOnly(): boolean; /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. */ get unknownValuePlotting(): UnknownValuePlotting; set unknownValuePlotting(v: UnknownValuePlotting); } export interface IIgrPolarLineSeriesProps extends IIgrPolarLineSeriesBaseProps { /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. */ unknownValuePlotting?: UnknownValuePlotting | string; }