import { EventEmitter } from '@angular/core'; import { IgxProgressiveLoadStatusEventArgs } from "igniteui-angular-charts"; import { IgxGeographicMapSeriesHostComponent } from "./igx-geographic-map-series-host-component"; import { GeographicHighDensityScatterSeries } from "./GeographicHighDensityScatterSeries"; import * as i0 from "@angular/core"; /** * Series class for a geographic map with points marked at given locations. * This is the geographic equivalent of a HighDensityScatterSeries. */ export declare class IgxGeographicHighDensityScatterSeriesComponent extends IgxGeographicMapSeriesHostComponent { protected createImplementation(): GeographicHighDensityScatterSeries; /** * @hidden */ get i(): GeographicHighDensityScatterSeries; constructor(); /** * Gets whether the current series shows pixels. */ get isPixel(): boolean; static ngAcceptInputType_isPixel: boolean | string; /** * The name of the property of ItemsSource items which contains the latitude coordinate of the symbol. */ get latitudeMemberPath(): string; set latitudeMemberPath(v: string); /** * The name of the property of ItemsSource items which contains the longitude coordinate of the symbol. */ get longitudeMemberPath(): string; set longitudeMemberPath(v: string); /** * Gets or sets the whether to use use brute force mode. */ get useBruteForce(): boolean; set useBruteForce(v: boolean); static ngAcceptInputType_useBruteForce: boolean | string; /** * Gets or sets the whether to progressively load the data into the chart. */ get progressiveLoad(): boolean; set progressiveLoad(v: boolean); static ngAcceptInputType_progressiveLoad: boolean | string; /** * Gets or sets the whether the chart reacts to mouse move events. */ get mouseOverEnabled(): boolean; set mouseOverEnabled(v: boolean); static ngAcceptInputType_mouseOverEnabled: boolean | string; /** * Gets or sets the density value that maps to the minimum heat color. */ get heatMinimum(): number; set heatMinimum(v: number); static ngAcceptInputType_heatMinimum: number | string; /** * Gets or sets the value that maps to the maximum heat color. */ get heatMaximum(): number; set heatMaximum(v: number); static ngAcceptInputType_heatMaximum: number | string; /** * Gets or sets the color to use for the minimum end of the scale. */ get heatMinimumColor(): string; set heatMinimumColor(v: string); /** * Gets or sets the color to use for the maximum end of the scale. */ get heatMaximumColor(): string; set heatMaximumColor(v: string); /** * Gets or sets the the pixel extent of the square data points that are rendered. */ get pointExtent(): number; set pointExtent(v: number); static ngAcceptInputType_pointExtent: number | string; /** * Represents the current status of the progressive load of the series. It will range from 0 to 100, where 100 is fully loaded. */ get progressiveStatus(): number; set progressiveStatus(v: number); static ngAcceptInputType_progressiveStatus: number | string; private _progressiveLoadStatusChanged; /** * Raised when the progressive loading state of the series has changed. */ get progressiveLoadStatusChanged(): EventEmitter<{ sender: any; args: IgxProgressiveLoadStatusEventArgs; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }