pivot-chart
Version:
pivot table react component
14 lines (13 loc) • 424 B
TypeScript
import React from "react";
import { NestTree, VisType } from "./common";
interface LeftNestGridProps {
data: NestTree;
visType: VisType;
depth: number;
defaultExpandedDepth: number;
onExpandChange?: (lpList: string[][], nestTree: NestTree) => void;
showAggregatedNode?: boolean;
highlightPathList?: any[][];
}
declare const LeftNestGrid: React.FC<LeftNestGridProps>;
export default LeftNestGrid;