@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
19 lines (18 loc) • 553 B
TypeScript
import { PatchColor } from "../patch/VuiPatch";
export type ScatterSeries = {
data: Array<Record<string, number>>;
name?: string;
color?: PatchColor;
};
type Props = {
series: ScatterSeries[];
xKey?: string;
yKey?: string;
height?: number;
showLegend?: boolean;
showGrid?: boolean;
showTooltip?: boolean;
"data-testid"?: string;
};
export declare const VuiScatterChart: ({ series, xKey, yKey, height, showLegend, showGrid, showTooltip, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};