igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
174 lines (173 loc) • 6.21 kB
TypeScript
import { IgxUserBaseAnnotation } from "./igx-user-base-annotation";
import { DataAnnotationInfo as DataAnnotationInfo_internal } from "./DataAnnotationInfo";
/**
* Represents data annotation
*/
export declare class IgxDataAnnotationInfo {
protected createImplementation(): DataAnnotationInfo_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): DataAnnotationInfo_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get xAxisPixel(): number;
set xAxisPixel(v: number);
static ngAcceptInputType_xAxisPixel: number | string;
get yAxisPixel(): number;
set yAxisPixel(v: number);
static ngAcceptInputType_yAxisPixel: number | string;
get xAxisWindow(): number;
set xAxisWindow(v: number);
static ngAcceptInputType_xAxisWindow: number | string;
get yAxisWindow(): number;
set yAxisWindow(v: number);
static ngAcceptInputType_yAxisWindow: number | string;
get xAxisValue(): number;
set xAxisValue(v: number);
static ngAcceptInputType_xAxisValue: number | string;
get yAxisValue(): number;
set yAxisValue(v: number);
static ngAcceptInputType_yAxisValue: number | string;
get dataIndex(): number;
set dataIndex(v: number);
static ngAcceptInputType_dataIndex: number | string;
get dataValueX(): number;
set dataValueX(v: number);
static ngAcceptInputType_dataValueX: number | string;
get dataValueY(): number;
set dataValueY(v: number);
static ngAcceptInputType_dataValueY: number | string;
get dataLabelX(): string;
set dataLabelX(v: string);
get dataLabelY(): string;
set dataLabelY(v: string);
get xAxisLabel(): string;
set xAxisLabel(v: string);
get yAxisLabel(): string;
set yAxisLabel(v: string);
get isStartLabel(): boolean;
set isStartLabel(v: boolean);
static ngAcceptInputType_isStartLabel: boolean | string;
get isEndLabel(): boolean;
set isEndLabel(v: boolean);
static ngAcceptInputType_isEndLabel: boolean | string;
get isCenterLabel(): boolean;
set isCenterLabel(v: boolean);
static ngAcceptInputType_isCenterLabel: boolean | string;
get textColor(): string;
set textColor(v: string);
get background(): string;
set background(v: string);
get borderColor(): string;
set borderColor(v: string);
get borderRadius(): number;
set borderRadius(v: number);
static ngAcceptInputType_borderRadius: number | string;
get borderThickness(): number;
set borderThickness(v: number);
static ngAcceptInputType_borderThickness: number | string;
/**
* Sets the x axis badge background color.
*/
get xAxisBadgeBackground(): string;
set xAxisBadgeBackground(v: string);
/**
* Sets the y axis badge background color.
*/
get yAxisBadgeBackground(): string;
set yAxisBadgeBackground(v: string);
/**
* Sets the x axis badge border color.
*/
get xAxisBadgeOutline(): string;
set xAxisBadgeOutline(v: string);
/**
* Sets the y axis badge border color.
*/
get yAxisBadgeOutline(): string;
set yAxisBadgeOutline(v: string);
/**
* Sets the x axis badge border radius.
*/
get xAxisBadgeRadius(): number;
set xAxisBadgeRadius(v: number);
static ngAcceptInputType_xAxisBadgeRadius: number | string;
/**
* Sets the y axis badge border radius.
*/
get yAxisBadgeRadius(): number;
set yAxisBadgeRadius(v: number);
static ngAcceptInputType_yAxisBadgeRadius: number | string;
/**
* Sets the x axis badge border thickness.
*/
get xAxisBadgeOutlineThickness(): number;
set xAxisBadgeOutlineThickness(v: number);
static ngAcceptInputType_xAxisBadgeOutlineThickness: number | string;
/**
* Sets the y axis badge border thickness.
*/
get yAxisBadgeOutlineThickness(): number;
set yAxisBadgeOutlineThickness(v: number);
static ngAcceptInputType_yAxisBadgeOutlineThickness: number | string;
/**
* Sets the margin between the x axis badge and annotation text.
*/
get xAxisBadgeMargin(): number;
set xAxisBadgeMargin(v: number);
static ngAcceptInputType_xAxisBadgeMargin: number | string;
/**
* Sets the margin between the y axis badge and annotation text.
*/
get yAxisBadgeMargin(): number;
set yAxisBadgeMargin(v: number);
static ngAcceptInputType_yAxisBadgeMargin: number | string;
/**
* Sets the size of the x axis badge.
*/
get xAxisBadgeSize(): number;
set xAxisBadgeSize(v: number);
static ngAcceptInputType_xAxisBadgeSize: number | string;
/**
* Sets the size of the y axis badge.
*/
get yAxisBadgeSize(): number;
set yAxisBadgeSize(v: number);
static ngAcceptInputType_yAxisBadgeSize: number | string;
/**
* Sets the path to an image to use in the x axis badge.
*/
get xAxisBadgeImagePath(): string;
set xAxisBadgeImagePath(v: string);
/**
* Sets the path to an image to use in the y axis badge.
*/
get yAxisBadgeImagePath(): string;
set yAxisBadgeImagePath(v: string);
/**
* Sets whether the x axis badge is enabled or not.
*/
get isXAxisBadgeEnabled(): boolean;
set isXAxisBadgeEnabled(v: boolean);
static ngAcceptInputType_isXAxisBadgeEnabled: boolean | string;
/**
* Sets whether the y axis badge is enabled or not.
*/
get isYAxisBadgeEnabled(): boolean;
set isYAxisBadgeEnabled(v: boolean);
static ngAcceptInputType_isYAxisBadgeEnabled: boolean | string;
/**
* Sets whether the x axis badge is enabled or not.
*/
get xAxisUserAnnotation(): IgxUserBaseAnnotation;
set xAxisUserAnnotation(v: IgxUserBaseAnnotation);
/**
* Sets whether the y axis badge is enabled or not.
*/
get yAxisUserAnnotation(): IgxUserBaseAnnotation;
set yAxisUserAnnotation(v: IgxUserBaseAnnotation);
findByName(name: string): any;
}