export type Position = | 'top' | 'top-left' | 'top-right' | 'left' | 'left-top' | 'left-bottom' | 'right' | 'right-top' | 'right-bottom' | 'bottom' | 'bottom-left' | 'bottom-right'; export default interface Legend { /** * 是否显示图例 */ legendShow?: boolean; /** * 图例位置 */ legendPosition?: Position; /** * 是否分页 */ legendFlipPage?: boolean; /** * 图文文字颜色 */ legendTextColor?: string; // eslint-disable-next-line semi }