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
TypeScript
import { UnknownValuePlotting } from "igniteui-angular-core";
import { IgxAnchoredRadialSeriesComponent } from "./igx-anchored-radial-series-component";
import { RadialAreaSeries } from "./RadialAreaSeries";
import * as i0 from "@angular/core";
/**
 * Represents a IgxDataChartComponent radial area series.
*/
export declare class IgxRadialAreaSeriesComponent extends IgxAnchoredRadialSeriesComponent {
    protected createImplementation(): RadialAreaSeries;
    /**
                                 * @hidden
                                 */
    get i(): RadialAreaSeries;
    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<IgxRadialAreaSeriesComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<IgxRadialAreaSeriesComponent, "igx-radial-area-series", never, { "unknownValuePlotting": "unknownValuePlotting"; }, {}, never, never>;
}