UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

77 lines (72 loc) 3.03 kB
import { IgPoint } from "igniteui-webcomponents-core"; import { IgcColorScaleComponent } from "./igc-color-scale-component"; import { IgcScatterTriangulationSeriesComponent } from "./igc-scatter-triangulation-series-component"; import { ScatterAreaSeries } from "./ScatterAreaSeries"; /** * 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 IgcScatterAreaSeriesComponent extends IgcScatterTriangulationSeriesComponent { protected createImplementation(): ScatterAreaSeries; /** * @hidden */ get i(): ScatterAreaSeries; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcScatterAreaSeriesComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets whether the current series shows an area shape. */ get isArea(): boolean; /** * Gets or sets ColorScale used to resolve the color values of points in the series. */ get colorScale(): IgcColorScaleComponent; set colorScale(v: IgcColorScaleComponent); /** * 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(): IgcColorScaleComponent; set actualColorScale(v: IgcColorScaleComponent); /** * 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; }