import { EventEmitter } from '@angular/core'; import { IgxColorScaleComponent } from "igniteui-angular-charts"; import { IgxTriangulationStatusEventArgs } from "igniteui-angular-core"; import { IgxGeographicXYTriangulatingSeriesComponent } from "./igx-geographic-xy-triangulating-series-component"; import { GeographicScatterAreaSeries } from "./GeographicScatterAreaSeries"; import * as i0 from "@angular/core"; /** * Series class which draws a colored 2D surface, in a geographic context, based on a triangulation of XY data with numeric values assigned to each point. */ export declare class IgxGeographicScatterAreaSeriesComponent extends IgxGeographicXYTriangulatingSeriesComponent { protected createImplementation(): GeographicScatterAreaSeries; /** * @hidden */ get i(): GeographicScatterAreaSeries; constructor(); /** * Gets whether the current series shows an area shape. */ get isArea(): boolean; static ngAcceptInputType_isArea: boolean | string; /** * The name of the property on each data item containing a numeric value which can be converted to a color by the ColorScale. */ get colorMemberPath(): string; set colorMemberPath(v: string); /** * The ColorScale used to resolve the color values of points in the series. */ get colorScale(): IgxColorScaleComponent; set colorScale(v: IgxColorScaleComponent); /** * Gets actual color scale that is set on ColorScale property or default ColorScale */ get actualColorScale(): IgxColorScaleComponent; set actualColorScale(v: IgxColorScaleComponent); findByName(name: string): any; protected _styling(container: any, component: any, parent?: any): void; /** * Updates ActualColorScale properties using HostedSeries's ColorScale properties */ updateActualColorScale(): void; private _triangulationStatusChanged; /** * Raised when the status of an ongoing Triangulation has changed. */ get triangulationStatusChanged(): EventEmitter<{ sender: any; args: IgxTriangulationStatusEventArgs; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }