UNPKG

igniteui-webcomponents-charts

Version:

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

31 lines (30 loc) 1.23 kB
import { IgcDataAnnotationPointLayerComponent } from "./igc-data-annotation-point-layer-component"; import { DataAnnotationBandLayer } from "./DataAnnotationBandLayer"; /** * Represents an annotation layer that renders bands (line with breadth) at locations of x/y values mapped to these properties: * StartValueXMemberPath * StartValueYMemberPath * EndValueXMemberPath * EndValueYMemberPath * AnnotationBreadthMemberPath */ export declare class IgcDataAnnotationBandLayerComponent extends IgcDataAnnotationPointLayerComponent { protected createImplementation(): DataAnnotationBandLayer; /** * @hidden */ get i(): DataAnnotationBandLayer; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcDataAnnotationBandLayerComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets name of data column with breath/size of shape annotations. */ get annotationBreadthMemberPath(): string; set annotationBreadthMemberPath(v: string); }