igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
28 lines (27 loc) • 808 B
TypeScript
import { FunnelDataContext as FunnelDataContext_internal } from "./FunnelDataContext";
/**
* Represents contextual data for the funnel chart.
*/
export declare class IgxFunnelDataContext {
protected createImplementation(): FunnelDataContext_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): FunnelDataContext_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* The data item that is in context.
*/
get item(): any;
set item(v: any);
/**
* The index of the data item that is in context.
*/
get index(): number;
set index(v: number);
static ngAcceptInputType_index: number | string;
findByName(name: string): any;
}