igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
27 lines (26 loc) • 728 B
TypeScript
import { FunnelDataContext as FunnelDataContext_internal } from "./FunnelDataContext";
/**
* Represents contextual data for the funnel chart.
*/
export declare class IgcFunnelDataContext {
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);
findByName(name: string): any;
}