@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
23 lines (22 loc) • 739 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { SankeyNodeModel } from '@syncfusion/ej2-charts';
/**
* `SankeyNodeDirective` directive represent a node of the react Sankey.
* It must be contained in a Sankey component(`SankeyComponent`).
* ```tsx
* <SankeyComponent>
* <SankeyNodesDirective>
* <SankeyNodeDirective></SankeyNodeDirective>
* </SankeyNodesDirective>
* </SankeyComponent>
* ```
*/
export declare class SankeyNodeDirective extends ComplexBase<SankeyNodeModel & {
children?: React.ReactNode;
}, SankeyNodeModel> {
static moduleName: string;
}
export declare class SankeyNodesCollectionDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}