import { ChartTypes } from '@zgfe/business-lib/es/chart/types'; import { SearchValue } from '../../types'; import { DisplaySetup } from '../../components/searchPanel/types'; export declare namespace eventChartProps { interface ChartTypesProps extends ChartTypes.Value { appData: any; xAxis: []; x_axis: []; } interface Props { /** * 图表数据 */ dataSource?: ChartTypesProps; dataSourceList?: DisplaySetup[]; onlyChart?: boolean; /** * 查询条件 */ params?: SearchValue; /** * 展示图标类型,不从查询条件中取 */ type?: string; /** * 展示列表 */ showList?: ChartTypesProps; /** * 图标颜色 */ showColors?: string[]; /** * 改变显示内容 */ onChangeShow?: (data: string[]) => void; } }