export interface LegendProps extends React.Props {
name?: string;
visible?: boolean;
position?: LegendPositionType;
layout?: LegendLayoutType;
title?: boolean;
....
}
<Legend
position="right-center"
offsetY={120}
offsetX={-100}
title={true}
/>
1条答案
按热度按时间mo49yndu1#
如果自己自定义该怎么办呢?