synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
14 lines (13 loc) • 521 B
TypeScript
import { FunctionComponent } from 'react';
import { TooltipVisualProps } from '../ElementWithTooltip';
import { PlotProps, ClickCallbackParams } from './types';
export declare type ThemesPlotProps = {
onPointClick: ({ facetValue, type, event }: ClickCallbackParams) => void;
dotPlot: PlotProps;
topBarPlot: PlotProps;
sideBarPlot: PlotProps;
tooltipProps?: TooltipVisualProps;
dotPlotYAxisLabel?: string;
};
declare const ThemesPlot: FunctionComponent<ThemesPlotProps>;
export default ThemesPlot;