UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

30 lines (29 loc) 1.38 kB
import { UnknownValuePlotting } from "igniteui-angular-core"; import { IgxPolarLineSeriesBaseComponent } from "./igx-polar-line-series-base-component"; import { PolarLineSeries } from "./PolarLineSeries"; import * as i0 from "@angular/core"; /** * Represents a IgxDataChartComponent polar line series. */ export declare class IgxPolarLineSeriesComponent extends IgxPolarLineSeriesBaseComponent { protected createImplementation(): PolarLineSeries; /** * @hidden */ get i(): PolarLineSeries; constructor(); /** * Gets whether the current series shows only line shapes. */ get isLineOnly(): boolean; static ngAcceptInputType_isLineOnly: boolean | string; /** * 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); static ngAcceptInputType_unknownValuePlotting: UnknownValuePlotting | string; static ɵfac: i0.ɵɵFactoryDeclaration<IgxPolarLineSeriesComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<IgxPolarLineSeriesComponent, "igx-polar-line-series", never, { "unknownValuePlotting": "unknownValuePlotting"; }, {}, never, never>; }