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 { DataAnnotationLineLayer } from "./DataAnnotationLineLayer";
/**
* Represents an annotation layer that renders lines at locations of x/y values mapped to these properties:
* StartValueXMemberPath
* StartValueYMemberPath
* EndValueXMemberPath
* EndValueYMemberPath
*/
export declare class IgcDataAnnotationLineLayerComponent extends IgcDataAnnotationPointLayerComponent {
protected createImplementation(): DataAnnotationLineLayer;
/**
* @hidden
*/
get i(): DataAnnotationLineLayer;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcDataAnnotationLineLayerComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
}