igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
30 lines (29 loc) • 1.37 kB
TypeScript
import { UnknownValuePlotting } from "igniteui-angular-core";
import { IgxPolarLineSeriesBaseComponent } from "./igx-polar-line-series-base-component";
import { PolarAreaSeries } from "./PolarAreaSeries";
import * as i0 from "@angular/core";
/**
* Represents a IgxDataChartComponent polar area series.
*/
export declare class IgxPolarAreaSeriesComponent extends IgxPolarLineSeriesBaseComponent {
protected createImplementation(): PolarAreaSeries;
/**
* @hidden
*/
get i(): PolarAreaSeries;
constructor();
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
static ngAcceptInputType_isArea: 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<IgxPolarAreaSeriesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPolarAreaSeriesComponent, "igx-polar-area-series", never, { "unknownValuePlotting": "unknownValuePlotting"; }, {}, never, never>;
}