igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
36 lines (35 loc) • 1.27 kB
TypeScript
import { IgrSeries } from "./igr-series";
import { CalloutStyleUpdatingEventArgs as CalloutStyleUpdatingEventArgs_internal } from "./CalloutStyleUpdatingEventArgs";
import { ContentChildrenManager } from "igniteui-react-core";
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;
get xValue(): any;
set xValue(v: any);
get yValue(): any;
set yValue(v: any);
get item(): any;
set item(v: any);
get series(): IgrSeries;
set series(v: IgrSeries);
get background(): string;
set background(v: string);
get textColor(): string;
set textColor(v: string);
get outline(): string;
set outline(v: string);
get leaderBrush(): string;
set leaderBrush(v: string);
get strokeThickness(): number;
set strokeThickness(v: number);
}