mirror of https://github.com/buster-so/buster.git
18 lines
571 B
TypeScript
18 lines
571 B
TypeScript
import type { ColumnMetaData } from '@/api/asset_interfaces/metric';
|
|
import type { BusterChartConfigProps } from './chartConfigProps';
|
|
|
|
export type BusterChartProps = {
|
|
data: Record<string, string | number | null | Date>[] | null;
|
|
groupByMethod?: 'sum' | 'average' | 'count';
|
|
loading?: boolean;
|
|
className?: string;
|
|
animate?: boolean;
|
|
animateLegend?: boolean;
|
|
id?: string;
|
|
error?: string;
|
|
columnMetadata?: ColumnMetaData[];
|
|
editable?: boolean;
|
|
onInitialAnimationEnd?: () => void;
|
|
onChartMounted?: (chart?: any) => void;
|
|
} & BusterChartConfigProps;
|