UNPKG

igniteui-webcomponents-charts

Version:

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

58 lines (57 loc) 2.01 kB
import { IgcTreemapNodeStyleComponent } from "./igc-treemap-node-style-component"; import { IgcHighlightingInfo } from "igniteui-webcomponents-core"; import { TreemapNodeStylingEventArgs as TreemapNodeStylingEventArgs_internal } from "./TreemapNodeStylingEventArgs"; export declare class IgcTreemapNodeStylingEventArgs { protected createImplementation(): TreemapNodeStylingEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): TreemapNodeStylingEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; get value(): number; set value(v: number); get sum(): number; set sum(v: number); get customValue(): any; set customValue(v: any); get item(): any; set item(v: any); get parentItem(): any; set parentItem(v: any); get label(): string; set label(v: string); get parentValue(): number; set parentValue(v: number); get parentLabel(): string; set parentLabel(v: string); get parentSum(): number; set parentSum(v: number); get isParent(): boolean; set isParent(v: boolean); get style(): IgcTreemapNodeStyleComponent; set style(v: IgcTreemapNodeStyleComponent); /** * Gets highlighting information for the current node. Null if no highlight is in progress. */ get highlightingInfo(): IgcHighlightingInfo; set highlightingInfo(v: IgcHighlightingInfo); /** * Sets whether the user handled the highlighting themselves. If so we won't run any of our * default highlight styling. */ get highlightingHandled(): boolean; set highlightingHandled(v: boolean); /** * Gets whether a highlight is currently in progress. */ get isHighlightInProgress(): boolean; set isHighlightInProgress(v: boolean); /** * Gets the overall highlight progress. */ get totalHighlightProgress(): number; set totalHighlightProgress(v: number); }