UNPKG

@syncfusion/ej2-react-heatmap

Version:

Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for React

36 lines (35 loc) 1.23 kB
import * as React from 'react'; import { HeatMap, HeatMapModel } from '@syncfusion/ej2-heatmap'; import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base'; /** * Represents the React HeatMap component. * This is used to customize the properties of the heatmap in order to visualize two-dimensional data, with values represented by gradient or solid color variations. * ```tsx * <HeatMapComponent></HeatMapComponent> * ``` */ export declare class HeatMapComponent extends HeatMap { state: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly<HeatMapModel | DefaultHtmlAttributes>; setState: any; private getDefaultAttributes; initRenderCalled: boolean; private checkInjectedModules; private statelessTemplateProps; private templateProps; private immediateRender; private isReactMock; props: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly<HeatMapModel | DefaultHtmlAttributes>; forceUpdate: (callBack?: () => any) => void; context: Object; portals: any; isReactComponent: Object; refs: { [key: string]: React.ReactInstance; }; constructor(props: any); render(): any; }