@apptane/react-ui-charts
Version:
Chart components in Apptane React UI framework
7 lines (6 loc) • 377 B
TypeScript
import { Datum } from "../common/Types.js";
import { ChartLegendProps } from "./ChartLegend.types.js";
/**
* Chart legend component with support for interactivity.
*/
export declare function ChartLegend<T extends Datum<Data>, Data = void>({ data, selectedDatumId, ...other }: ChartLegendProps<T, Data>): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;