igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
118 lines (117 loc) • 3.48 kB
TypeScript
import { IgrSeries } from "./igr-series";
import { CalloutStyleUpdatingEventArgs as CalloutStyleUpdatingEventArgs_internal } from "./CalloutStyleUpdatingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* Event arguments for the CalloutStyleUpdating event
*/
export declare class IgrCalloutStyleUpdatingEventArgs {
protected createImplementation(): CalloutStyleUpdatingEventArgs_internal;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): CalloutStyleUpdatingEventArgs_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
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(): IgrSeries;
set series(v: IgrSeries);
/**
* 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);
/**
* 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);
/**
* Gets or sets badge width in the callout.
*/
get badgeWidth(): number;
set badgeWidth(v: number);
/**
* Gets or sets badge height in the callout.
*/
get badgeHeight(): number;
set badgeHeight(v: number);
/**
* Gets or sets whether the badge is visible in the callout.
*/
get badgeVisible(): boolean;
set badgeVisible(v: boolean);
/**
* Gets or sets the gap between badge and text in the callout.
*/
get badgeGap(): number;
set badgeGap(v: number);
/**
* 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);
get backgroundCorner(): number;
set backgroundCorner(v: number);
get bacgkroundPaddingLeft(): number;
set bacgkroundPaddingLeft(v: number);
get bacgkroundPaddingTop(): number;
set bacgkroundPaddingTop(v: number);
get bacgkroundPaddingRight(): number;
set bacgkroundPaddingRight(v: number);
get bacgkroundPaddingBottom(): number;
set bacgkroundPaddingBottom(v: number);
}