igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
33 lines (32 loc) • 1.17 kB
TypeScript
import { IgxSeriesComponent } from "./igx-series-component";
import { CalloutStyleUpdatingEventArgs as CalloutStyleUpdatingEventArgs_internal } from "./CalloutStyleUpdatingEventArgs";
export declare class IgxCalloutStyleUpdatingEventArgs {
protected createImplementation(): CalloutStyleUpdatingEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): CalloutStyleUpdatingEventArgs_internal;
private onImplementationCreated;
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(): IgxSeriesComponent;
set series(v: IgxSeriesComponent);
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);
static ngAcceptInputType_strokeThickness: number | string;
}