@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
12 lines (11 loc) • 326 B
TypeScript
import * as React from "react";
export interface ILegendListProps {
series: any;
chartType: string;
width?: number;
onItemClick: (item: any) => void;
}
export declare const LegendSeparator: () => JSX.Element;
export default class LegendList extends React.PureComponent<ILegendListProps> {
render(): any;
}