UNPKG

@alicloud/cloud-charts

Version:

![](https://img.shields.io/npm/v/@alicloud/cloud-charts?color=%23ff8200)

18 lines (17 loc) 398 B
/// <reference types="react" /> import './index.scss'; interface FreeTooltipProps { /** 标题 */ title?: string; /** 数据项 */ data: Array<{ /** 名称 */ name: string; /** 数值 */ value: number; /** 颜色 */ color?: string; }>; } export default function Tooltip({ title, data }: FreeTooltipProps): JSX.Element; export {};