UNPKG

@alicloud/cloud-charts

Version:

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

12 lines (11 loc) 341 B
/// <reference types="react" /> export interface LegendMarkerProps { /** marker配置项,同g2中数据结构 */ marker: any; /** 当前legend是否disable */ disable?: boolean; } /** * 根据marker配置项绘制legend marker */ export default function LegendMarker({ marker, disable }: LegendMarkerProps): JSX.Element;