UNPKG

@onesy/ui-react

Version:
22 lines (21 loc) 581 B
import React from 'react'; import { TMethod } from '@onesy/models'; import { IChart, IChartValueValues } from '../Chart/Chart'; export declare type IScatterChartItem = IChart & { name?: string; refs?: { wrapper?: HTMLElement; defs?: HTMLElement; }; rects?: { wrapper?: DOMRect; svg?: DOMRect; }; values?: IChartValueValues; updateDefs?: TMethod; updateLegend?: TMethod; BackgroundProps?: any; BorderProps?: any; }; declare const ScatterChartItem: React.FC<IScatterChartItem>; export default ScatterChartItem;