igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.04 kB
TypeScript
import { StyleShapeEventArgs as StyleShapeEventArgs_internal } from "./StyleShapeEventArgs";
export declare class IgxStyleShapeEventArgs {
protected _implementation: any;
get i(): StyleShapeEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get item(): any;
set item(v: any);
/**
* Gets or sets the fill brush.
*/
get shapeFill(): string;
set shapeFill(v: string);
/**
* Gets or sets the stroke brush.
*/
get shapeStroke(): string;
set shapeStroke(v: string);
/**
* Gets or sets the stroke thickness.
*/
get shapeStrokeThickness(): number;
set shapeStrokeThickness(v: number);
static ngAcceptInputType_shapeStrokeThickness: number | string;
/**
* Gets or sets the opacity.
*/
get shapeOpacity(): number;
set shapeOpacity(v: number);
static ngAcceptInputType_shapeOpacity: number | string;
ensureShapeStyle(): void;
}