@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
13 lines (12 loc) • 422 B
TypeScript
import * as React from "react";
import { IVisualizationProperties } from "../../../interfaces/Visualization";
export interface ILegendSection {
controlsDisabled: boolean;
properties: IVisualizationProperties;
propertiesMeta: any;
pushData: (data: any) => any;
}
export declare class LegendSection extends React.PureComponent<ILegendSection, {}> {
render(): JSX.Element;
}
export default LegendSection;