UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

31 lines (30 loc) 933 B
import { FunnelDataContext as FunnelDataContext_internal } from "./FunnelDataContext"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents contextual data for the funnel chart. */ export declare class IgrFunnelDataContext { protected createImplementation(): FunnelDataContext_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): FunnelDataContext_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; 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; }