UNPKG

@amaui/ui-react

Version:
23 lines (22 loc) 597 B
import React from 'react'; import { TMethod } from '@amaui/models'; import { IChart, IChartValueValues } from '../Chart/Chart'; export interface IAreaChartItem extends IChart { name?: string; refs?: { wrapper?: HTMLElement; defs?: HTMLElement; }; rects?: { wrapper?: DOMRect; svg?: DOMRect; }; values?: IChartValueValues; updateDefs?: TMethod; updateLegend?: TMethod; smooth?: boolean; smoothRatio?: number; linearGradient?: boolean; } declare const AreaChartItem: React.FC<IAreaChartItem>; export default AreaChartItem;