UNPKG

@alicloud/cloud-charts

Version:

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

14 lines (13 loc) 420 B
/// <reference types="react" /> import { ListItem } from '@antv/g2/esm/dependents'; export interface LegendMarkerProps { /** marker配置项,同g2中数据结构 */ marker: any; /** 当前legend是否disable */ disable?: boolean; item?: ListItem; } /** * 根据marker配置项绘制legend marker */ export default function LegendMarker({ marker, disable, item }: LegendMarkerProps): JSX.Element;