igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
18 lines (17 loc) • 705 B
TypeScript
import { FormatLinearGraphLabelEventArgs as FormatLinearGraphLabelEventArgs_internal } from "./FormatLinearGraphLabelEventArgs";
/**
* Represents event argument for FormatLinearGraphLabel.
*/
export declare class IgxFormatLinearGraphLabelEventArgs {
protected createImplementation(): FormatLinearGraphLabelEventArgs_internal;
protected _implementation: any;
get i(): FormatLinearGraphLabelEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get actualMinimumValue(): number;
get actualMaximumValue(): number;
get value(): number;
get label(): string;
set label(value: string);
}