igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
39 lines (38 loc) • 1.56 kB
TypeScript
import { IgxSeriesComponent } from "./igx-series-component";
import { IgxSeriesMatcher } from "./igx-series-matcher";
import { IgxUserBaseAnnotation } from "./igx-user-base-annotation";
import { UserPointAnnotation as UserPointAnnotation_internal } from "./UserPointAnnotation";
/**
* Represents an user annotation for rendering data point annotation on a series
*/
export declare class IgxUserPointAnnotation extends IgxUserBaseAnnotation {
protected createImplementation(): UserPointAnnotation_internal;
/**
* @hidden
*/
get i(): UserPointAnnotation_internal;
constructor();
/**
* Gets or sets the target series that will display the annotation.
*/
get targetSeries(): IgxSeriesComponent;
set targetSeries(v: IgxSeriesComponent);
/**
* Gets or sets a matcher for matching a series that will display the annotation.
*/
get targetSeriesMatcher(): IgxSeriesMatcher;
set targetSeriesMatcher(v: IgxSeriesMatcher);
/**
* Gets or sets the value that determines location of the annotation in the coordinates of x-axis.
*/
get xValue(): number;
set xValue(v: number);
static ngAcceptInputType_xValue: number | string;
/**
* Gets or sets the value that determines location of the annotation in the coordinates of y-axis.
*/
get yValue(): number;
set yValue(v: number);
static ngAcceptInputType_yValue: number | string;
findByName(name: string): any;
}