igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
101 lines (100 loc) • 3.12 kB
TypeScript
import { DataAnnotationItem as DataAnnotationItem_internal } from "./DataAnnotationItem";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Represents a definition of data annotation displayed by the DataAnnotationShapeLayer
*/
export declare class IgrDataAnnotationItem {
protected createImplementation(): DataAnnotationItem_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): DataAnnotationItem_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets data index associated with the annotation
*/
get dataIndex(): number;
set dataIndex(v: number);
/**
* Gets or sets a label displayed at start annotation shape on x-axis
*/
get startLabelX(): string;
set startLabelX(v: string);
/**
* Gets or sets a label displayed at start annotation shape on y-axis
*/
get startLabelY(): string;
set startLabelY(v: string);
/**
* Gets or sets a label displayed at end annotation shape on x-axis
*/
get endLabelX(): string;
set endLabelX(v: string);
/**
* Gets or sets a label displayed at end annotation shape on y-axis
*/
get endLabelY(): string;
set endLabelY(v: string);
/**
* Gets or sets a label displayed at center annotation shape on y-axis
*/
get centerLabelY(): string;
set centerLabelY(v: string);
/**
* Gets or sets a label displayed at center annotation shape on x-axis
*/
get centerLabelX(): string;
set centerLabelX(v: string);
/**
* Gets X coordinate for the start of annotation shape
*/
get shapeStartX(): number;
set shapeStartX(v: number);
/**
* Gets Y coordinate for the start of annotation shape
*/
get shapeStartY(): number;
set shapeStartY(v: number);
/**
* Gets X coordinate for the end of annotation shape
*/
get shapeEndX(): number;
set shapeEndX(v: number);
/**
* Gets Y coordinate for the end of annotation shape
*/
get shapeEndY(): number;
set shapeEndY(v: number);
/**
* Gets X coordinate for the center of annotation shape
*/
get shapeCenterX(): number;
set shapeCenterX(v: number);
/**
* Gets Y coordinate for the center of annotation shape
*/
get shapeCenterY(): number;
set shapeCenterY(v: number);
/**
* Gets or sets fill brush of the annotation shape
*/
get shapeBrush(): string;
set shapeBrush(v: string);
/**
* Gets or sets outline brush of the annotation shape
*/
get shapeOutline(): string;
set shapeOutline(v: string);
/**
* Gets or sets outline thickness of the annotation shape
*/
get shapeThickness(): number;
set shapeThickness(v: number);
findByName(name: string): any;
}