igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
126 lines (125 loc) • 4.2 kB
TypeScript
import { IgxSeriesComponent } from "./igx-series-component";
import { CalloutStyleUpdatingEventArgs as CalloutStyleUpdatingEventArgs_internal } from "./CalloutStyleUpdatingEventArgs";
/**
* Event arguments for the CalloutStyleUpdating event
*/
export declare class IgxCalloutStyleUpdatingEventArgs {
protected createImplementation(): CalloutStyleUpdatingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutStyleUpdatingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets X-position of data item associated with the callout.
*/
get xValue(): any;
set xValue(v: any);
/**
* Gets Y-position of data item associated with the callout.
*/
get yValue(): any;
set yValue(v: any);
/**
* Gets data item associated with the callout.
*/
get item(): any;
set item(v: any);
/**
* Gets data series associated with the callout.
*/
get series(): IgxSeriesComponent;
set series(v: IgxSeriesComponent);
/**
* Gets or sets the background of the callout.
*/
get background(): string;
set background(v: string);
/**
* Gets or sets the text color of the callout.
*/
get textColor(): string;
set textColor(v: string);
/**
* Gets or sets the outline of the callout.
*/
get outline(): string;
set outline(v: string);
/**
* Gets or sets the leader brush of the callout.
*/
get leaderBrush(): string;
set leaderBrush(v: string);
/**
* Gets or sets the stroke thickness of the callout.
*/
get strokeThickness(): number;
set strokeThickness(v: number);
static ngAcceptInputType_strokeThickness: number | string;
/**
* Gets or sets badge fill in the callout.
*/
get badgeBackground(): string;
set badgeBackground(v: string);
/**
* Gets or sets badge outline in the callout.
*/
get badgeOutline(): string;
set badgeOutline(v: string);
/**
* Gets or sets badge thickness in the callout.
*/
get badgeThickness(): number;
set badgeThickness(v: number);
static ngAcceptInputType_badgeThickness: number | string;
/**
* Gets or sets badge width in the callout.
*/
get badgeWidth(): number;
set badgeWidth(v: number);
static ngAcceptInputType_badgeWidth: number | string;
/**
* Gets or sets badge height in the callout.
*/
get badgeHeight(): number;
set badgeHeight(v: number);
static ngAcceptInputType_badgeHeight: number | string;
/**
* Gets or sets whether the badge is visible in the callout.
*/
get badgeVisible(): boolean;
set badgeVisible(v: boolean);
static ngAcceptInputType_badgeVisible: boolean | string;
/**
* Gets or sets the gap between badge and text in the callout.
*/
get badgeGap(): number;
set badgeGap(v: number);
static ngAcceptInputType_badgeGap: number | string;
/**
* Gets or sets the path to an image displayed in the callout.
*/
get badgeImage(): string;
set badgeImage(v: string);
get badgeCorner(): number;
set badgeCorner(v: number);
static ngAcceptInputType_badgeCorner: number | string;
get backgroundCorner(): number;
set backgroundCorner(v: number);
static ngAcceptInputType_backgroundCorner: number | string;
get bacgkroundPaddingLeft(): number;
set bacgkroundPaddingLeft(v: number);
static ngAcceptInputType_bacgkroundPaddingLeft: number | string;
get bacgkroundPaddingTop(): number;
set bacgkroundPaddingTop(v: number);
static ngAcceptInputType_bacgkroundPaddingTop: number | string;
get bacgkroundPaddingRight(): number;
set bacgkroundPaddingRight(v: number);
static ngAcceptInputType_bacgkroundPaddingRight: number | string;
get bacgkroundPaddingBottom(): number;
set bacgkroundPaddingBottom(v: number);
static ngAcceptInputType_bacgkroundPaddingBottom: number | string;
}