@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
18 lines (17 loc) • 679 B
TypeScript
/// <reference types="react" />
import { PositionType } from "../../visualizations/typings/legend";
import { IGeoData, IPushpinCategoryLegendItem } from "../../../interfaces/GeoChart";
export interface IGeoChartLegendRendererProps {
categoryItems?: IPushpinCategoryLegendItem[];
format?: string;
geoData?: IGeoData;
height?: number;
locale?: string;
colorLegendValue: string;
position?: PositionType;
responsive?: boolean;
showFluidLegend?: boolean;
numericSymbols?: string[];
onItemClick?: (item: IPushpinCategoryLegendItem) => void;
}
export default function GeoChartLegendRenderer(props: IGeoChartLegendRendererProps): JSX.Element;