igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
32 lines (31 loc) • 1.1 kB
TypeScript
import { IgcSeriesComponent } from "./igc-series-component";
import { CalloutStyleUpdatingEventArgs as CalloutStyleUpdatingEventArgs_internal } from "./CalloutStyleUpdatingEventArgs";
export declare class IgcCalloutStyleUpdatingEventArgs {
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(): IgcSeriesComponent;
set series(v: IgcSeriesComponent);
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);
}