igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
74 lines (69 loc) • 3.25 kB
TypeScript
import { IgPoint } from "igniteui-angular-core";
import { IgxColorScaleComponent } from "./igx-color-scale-component";
import { IgxScatterTriangulationSeriesComponent } from "./igx-scatter-triangulation-series-component";
import { ScatterAreaSeries } from "./ScatterAreaSeries";
import * as i0 from "@angular/core";
/**
* Series class which draws a colored 2D surface based on a triangulation of XY data with numeric values assigned to each point.
*/
export declare class IgxScatterAreaSeriesComponent extends IgxScatterTriangulationSeriesComponent {
protected createImplementation(): ScatterAreaSeries;
/**
* @hidden
*/
get i(): ScatterAreaSeries;
constructor();
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
static ngAcceptInputType_isArea: boolean | string;
/**
* Gets or sets ColorScale used to resolve the color values of points in the series.
*/
get colorScale(): IgxColorScaleComponent;
set colorScale(v: IgxColorScaleComponent);
/**
* Gets or sets 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);
/**
* Gets actual color scale that is set on ColorScale property or default ColorScale
*/
get actualColorScale(): IgxColorScaleComponent;
set actualColorScale(v: IgxColorScaleComponent);
/**
* Gets or sets the label displayed before series color value in the Data Legend.
*/
get colorMemberAsLegendLabel(): string;
set colorMemberAsLegendLabel(v: string);
/**
* Gets or sets the unit displayed after series color value in the Data Legend.
*/
get colorMemberAsLegendUnit(): string;
set colorMemberAsLegendUnit(v: string);
findByName(name: string): any;
protected _styling(container: any, component: any, parent?: any): void;
getItemValue(item: any, memberPathName: string): any;
/**
* Gets the value of a requested member path from the series.
* @param memberPathName * The property name of a valid member path for the series
*/
getMemberPathValue(memberPathName: string): string;
/**
* Gets the item that is the best match for the specified world coordinates.
* @param world * The world coordinates to use.
*/
getItem(world: IgPoint): any;
/**
* Updates ActualColorScale properties when the ColorScale property has changed
*/
updateActualColorScale(): void;
/**
* Attaches an image to the view of this series
*/
attachImage(image: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<IgxScatterAreaSeriesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxScatterAreaSeriesComponent, "igx-scatter-area-series", never, { "colorScale": "colorScale"; "colorMemberPath": "colorMemberPath"; "actualColorScale": "actualColorScale"; "colorMemberAsLegendLabel": "colorMemberAsLegendLabel"; "colorMemberAsLegendUnit": "colorMemberAsLegendUnit"; }, {}, never, never>;
}