import { EventEmitter } from '@angular/core'; import { IgxValueBrushScaleComponent } from "igniteui-angular-charts"; import { IgxContourValueResolverComponent } from "igniteui-angular-charts"; import { IgxTriangulationStatusEventArgs } from "igniteui-angular-core"; import { IgxGeographicXYTriangulatingSeriesComponent } from "./igx-geographic-xy-triangulating-series-component"; import { GeographicContourLineSeries } from "./GeographicContourLineSeries"; import * as i0 from "@angular/core"; /** * Represents a class for Geographic Contour Series displayed on a map. */ export declare class IgxGeographicContourLineSeriesComponent extends IgxGeographicXYTriangulatingSeriesComponent { protected createImplementation(): GeographicContourLineSeries; /** * @hidden */ get i(): GeographicContourLineSeries; constructor(); /** * Gets whether the current series shows a line contour shape. */ get isLineContour(): boolean; static ngAcceptInputType_isLineContour: boolean | string; /** * The name of the property from which to retrieve the numeric values from the ItemsSource items. */ get valueMemberPath(): string; set valueMemberPath(v: string); /** * The ValueBrushScale to use when determining Brushes for each contour line, based on the values found in ValueMemberPath. */ get fillScale(): IgxValueBrushScaleComponent; set fillScale(v: IgxValueBrushScaleComponent); /** * Gets actual fill scale that is set on the FillScale property or default FillScale */ get actualFillScale(): IgxValueBrushScaleComponent; set actualFillScale(v: IgxValueBrushScaleComponent); /** * The ContourValueResolver used to determine the numeric values of contours. */ get valueResolver(): IgxContourValueResolverComponent; set valueResolver(v: IgxContourValueResolverComponent); findByName(name: string): any; protected _styling(container: any, component: any, parent?: any): 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; }