@syncfusion/ej2-react-charts
Version:
Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React
41 lines (40 loc) • 1.33 kB
TypeScript
import * as React from 'react';
import { AccumulationChart, AccumulationChartModel } from '@syncfusion/ej2-charts';
import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
export interface AccumulationChartTypecast {
tooltip?: any;
}
/**
* Represents react AccumulationChart Component
* ```tsx
* <AccumulationChartComponent></AccumulationChartComponent>
* ```
*/
export declare class AccumulationChartComponent extends AccumulationChart {
state: Readonly<{
children?: React.ReactNode | React.ReactNode[];
}> & Readonly<AccumulationChartModel | DefaultHtmlAttributes | AccumulationChartTypecast>;
setState: any;
private getDefaultAttributes;
initRenderCalled: boolean;
private checkInjectedModules;
directivekeys: {
[key: string]: Object;
};
private statelessTemplateProps;
private templateProps;
private immediateRender;
private isReactMock;
props: Readonly<{
children?: React.ReactNode | React.ReactNode[];
}> & Readonly<AccumulationChartModel | DefaultHtmlAttributes | AccumulationChartTypecast>;
forceUpdate: (callBack?: () => any) => void;
context: Object;
portals: any;
isReactComponent: Object;
refs: {
[key: string]: React.ReactInstance;
};
constructor(props: any);
render(): any;
}