UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

79 lines (78 loc) 2.97 kB
import { DataAnnotationDisplayMode } from "./DataAnnotationDisplayMode"; import { IgxUserShapeAnnotation } from "./igx-user-shape-annotation"; import { UserStripAnnotation as UserStripAnnotation_internal } from "./UserStripAnnotation"; /** * Represents an user annotation for rendering data strip annotation */ export declare class IgxUserStripAnnotation extends IgxUserShapeAnnotation { protected createImplementation(): UserStripAnnotation_internal; /** * @hidden */ get i(): UserStripAnnotation_internal; constructor(); /** * Gets or sets the value that determines start of the annotation on an axis. */ get startValue(): number; set startValue(v: number); static ngAcceptInputType_startValue: number | string; /** * Gets or sets optional text displayed in the label at the start of annotation. */ get startLabel(): string; set startLabel(v: string); /** * Gets or sets text color of the label at the start of annotation. */ get startLabelColor(): string; set startLabelColor(v: string); /** * Gets or sets background of the label at the start of annotation. */ get startLabelBackground(): string; set startLabelBackground(v: string); /** * Gets or sets border color of the label at the start of annotation. */ get startLabelBorderColor(): string; set startLabelBorderColor(v: string); /** * Gets or sets the value that determines end of the annotation on an axis. */ get endValue(): number; set endValue(v: number); static ngAcceptInputType_endValue: number | string; /** * Gets or sets optional text displayed in the label at the end of annotation. */ get endLabel(): string; set endLabel(v: string); /** * Gets or sets text color of the label at the end of annotation. */ get endLabelColor(): string; set endLabelColor(v: string); /** * Gets or sets background of the label at the end of annotation. */ get endLabelBackground(): string; set endLabelBackground(v: string); /** * Gets or sets border color of the label at the end of annotation. */ get endLabelBorderColor(): string; set endLabelBorderColor(v: string); /** * Gets or sets display mode of start value of annotation. */ get startValueDisplayMode(): DataAnnotationDisplayMode; set startValueDisplayMode(v: DataAnnotationDisplayMode); static ngAcceptInputType_startValueDisplayMode: DataAnnotationDisplayMode | string; /** * Gets or sets display mode of end value of annotation. */ get endValueDisplayMode(): DataAnnotationDisplayMode; set endValueDisplayMode(v: DataAnnotationDisplayMode); static ngAcceptInputType_endValueDisplayMode: DataAnnotationDisplayMode | string; }