UNPKG

igniteui-webcomponents-charts

Version:

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

66 lines (64 loc) 2.84 kB
import { IgcValueBrushScaleComponent } from "./igc-value-brush-scale-component"; import { IgcContourValueResolverComponent } from "./igc-contour-value-resolver-component"; import { IgcScatterTriangulationSeriesComponent } from "./igc-scatter-triangulation-series-component"; import { ScatterContourSeries } from "./ScatterContourSeries"; /** * Series class for rendering isarithmic contours based on a triangulation of X+Y+Value points in the ItemsSource. */ export declare class IgcScatterContourSeriesComponent extends IgcScatterTriangulationSeriesComponent { protected createImplementation(): ScatterContourSeries; /** * @hidden */ get i(): ScatterContourSeries; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcScatterContourSeriesComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets whether the current series shows a line contour shape. */ get isLineContour(): boolean; /** * Gets or set the name of the property from which to retrieve the numeric values from the ItemsSource items. */ get valueMemberPath(): string; set valueMemberPath(v: string); /** * Gets or sets the label displayed before series value in the Data Legend. */ get valueMemberAsLegendLabel(): string; set valueMemberAsLegendLabel(v: string); /** * Gets or sets the unit displayed after series value in the Data Legend. */ get valueMemberAsLegendUnit(): string; set valueMemberAsLegendUnit(v: string); /** * Gets or sets the ValueBrushScale to use when determining Brushes for each contour line, based on the values found in ValueMemberPath. */ get fillScale(): IgcValueBrushScaleComponent; set fillScale(v: IgcValueBrushScaleComponent); /** * Gets actual fill scale that is set on the FillScale property or default FillScale */ get actualFillScale(): IgcValueBrushScaleComponent; set actualFillScale(v: IgcValueBrushScaleComponent); /** * Gets or set the ContourValueResolver used to determine the numeric values of contours. */ get valueResolver(): IgcContourValueResolverComponent; set valueResolver(v: IgcContourValueResolverComponent); 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; }