UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

26 lines (25 loc) 764 B
import type { QueryProps } from 'src/shared/types'; import React from 'react'; import type { ChartToolTipProps, TooltipField } from '../types'; interface BubbleChartProps { title?: string; xAxisLabel?: string; yAxisLabel?: string; colorPalette?: string[]; themeColor?: string; className?: string; url?: string; query: QueryProps; xAxisDataKey: string; yAxisDataKey: string; sizeDataKey: string; categoryDataKey: string; chartToolTip: ChartToolTipProps; tooltipValueFormat: string; tooltipTitle?: string; tooltipUnit?: string; tooltipAdditionalFields?: (string | TooltipField)[]; showDetailsModal?: boolean; } declare const BubbleChart: React.FC<BubbleChartProps>; export default BubbleChart;