UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

34 lines 744 B
export type GraphItem = { x: number; y: string; info?: string; group: string; }; export type PlotStyle = { markerFill?: string; markerLine?: string; markerSize?: number; backgroundColor?: string; }; export type Dictionary = { [key: string]: string; }; export type BarPlotColors = Dictionary; export type PlotProps = { entityId: string; xField: string; yField: string; groupField: string; countLabel?: string; whereClause?: string; infoField?: string; colors?: BarPlotColors; markerSymbols?: Dictionary; plotStyle?: PlotStyle; }; export type ClickCallbackParams = { event: MouseEvent; facetValue: string; type: string; }; //# sourceMappingURL=types.d.ts.map