linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
26 lines (25 loc) β’ 670 B
TypeScript
import React from 'react';
import { ModalProps } from '../../modal';
import { ColumnProps } from '../../table';
interface IProps extends ModalProps {
data?: Record<string, unknown>[];
type: 'line' | 'pie' | 'bar' | null;
columns?: (ColumnProps<any> & {
etype: string;
})[];
selectInfo?: {
start: {
i: number;
j: number;
};
end: {
i: number;
j: number;
};
};
rowKey?: string;
deepDataSource?: Record<string, unknown>[];
}
/** i ζ―θ‘ j ζ―ε */
declare const TableChartsModal: (props: IProps) => React.JSX.Element;
export default TableChartsModal;