# 接口:LayoutItem

# 层次结构

# 属性

# bottom

bottom: 数字

项目的底部边缘。由布局系统设置,更新时不能使用

# 定义在

types/layout.d.ts:41 (打开新窗口)


# fullSize

fullSize: 布尔值

如果为 true,并且项是水平的,则向下推挤垂直盒子

# 定义在

types/layout.d.ts:17 (打开新窗口)


# height

height: 数字

项目的高度。在 update() 后必须有效

# 定义在

types/layout.d.ts:25 (打开新窗口)


# left

left: 数字

项目的左侧边缘。由布局系统设置,更新时不能使用

# 定义在

types/layout.d.ts:29 (打开新窗口)


# position

position: LayoutPosition

项目在图表布局中的位置。可能的值是

# 定义在

types/layout.d.ts:9 (打开新窗口)


right: 数字

项目的右侧边缘。由布局系统设置,更新时不能使用

# 定义在

types/layout.d.ts:37 (在新窗口中打开)


# top

top: number

项目的上边缘。由布局系统设置,不能在更新中使用

# 定义在

types/layout.d.ts:33 (在新窗口中打开)


# weight

weight: number

用于排序项目的权重。权重越高,离图表区域越远

# 定义在

types/layout.d.ts:13 (在新窗口中打开)


# width

width: number

项目的宽度。必须在更新()后有效

# 定义在

types/layout.d.ts:21 (在新窗口中打开)

# 方法

# beforeLayout

可选 beforeLayout(): void

在布局过程开始之前调用

# 返回

void

# 定义在

types/layout.d.ts:46 (在新窗口中打开)


# draw

draw(chartArea): void

绘制元素

# 参数

名称 类型
chartArea ChartArea

# 返回

void

# 定义在

types/layout.d.ts:50 (在新窗口中打开)


# getPadding

可选 getPadding(): ChartArea

返回边缘填充的对象

# 返回

ChartArea

# 定义在

types/layout.d.ts:54 (在新窗口中打开)


# isHorizontal

isHorizontal(): boolean

返回布局项为水平(即顶部或底部)则为true

# 返回值

boolean

# 定义于

types/layout.d.ts:58 (在新窗口中打开)


# update

update(width, height, margins?): void

接收两个参数:宽度(width)和高度(height)。

# 参数

名称 类型
width number
height number
margins? ChartArea

# 返回值

void

# 定义于

types/layout.d.ts:64 (在新窗口中打开)