@onesy/ui-react
Version:
UI for React
22 lines (21 loc) • 581 B
TypeScript
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;