igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
25 lines (24 loc) • 1.02 kB
TypeScript
import { IgcDataAnnotationPointLayerComponent } from "./igc-data-annotation-point-layer-component";
import { DataAnnotationRectLayer } from "./DataAnnotationRectLayer";
/**
* Represents an annotation layer that renders rectangles at locations of x/y values mapped to these properties:
* StartValueXMemberPath
* StartValueYMemberPath
* EndValueXMemberPath
* EndValueYMemberPath
*/
export declare class IgcDataAnnotationRectLayerComponent extends IgcDataAnnotationPointLayerComponent {
protected createImplementation(): DataAnnotationRectLayer;
/**
* @hidden
*/
get i(): DataAnnotationRectLayer;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcDataAnnotationRectLayerComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
}