• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Line
2
3直线绘制组件。
4
5>  **说明:**
6>
7> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
8
9## 子组件
10
1112
13
14## 接口
15
16Line(value?: {width?: string | number, height?: string | number})
17
18从API version 9开始,该接口支持在ArkTS卡片中使用。
19
20**参数:**
21
22| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
23| -------- | -------- | -------- | -------- | -------- |
24| width | string \| number | 否 | 0 | 宽度。 |
25| height | string \| number | 否 | 0 | 高度。 |
26
27
28## 属性
29
30除支持[通用属性](ts-universal-attributes-size.md)外,还支持以下属性:
31
32| 名称 | 类型 | 默认值 | 描述 |
33| -------- | -------- | -------- | -------- |
34| startPoint | Array&lt;Length&gt; | [0,&nbsp;0] | 直线起点坐标点(相对坐标),单位vp。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
35| endPoint   | Array&lt;Length&gt; | [0,&nbsp;0] | 直线终点坐标点(相对坐标),单位vp。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
36| fill | [ResourceColor](ts-types.md#resourcecolor) | Color.Black | 设置填充区域颜色。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>Line组件无法形成闭合区域,该属性设置无效。 |
37| fillOpacity | number&nbsp;\|&nbsp;string&nbsp;\|&nbsp;[Resource](ts-types.md#resource类型) | 1 | 设置填充区域透明度。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>Line组件无法形成闭合区域,该属性设置无效。 |
38| stroke | [ResourceColor](ts-types.md) | - | 设置边框颜色,不设置时,默认没有边框线条。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
39| strokeDashArray | Array&lt;Length&gt; | [] | 设置线条间隙。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
40| strokeDashOffset | number&nbsp;\|&nbsp;string | 0 | 线条绘制起点的偏移量。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
41| strokeLineCap | [LineCapStyle](ts-appendix-enums.md#linecapstyle) | LineCapStyle.Butt | 设置线条端点绘制样式。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
42| strokeLineJoin | [LineJoinStyle](ts-appendix-enums.md#linejoinstyle) | LineJoinStyle.Miter | 设置线条拐角绘制样式。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>Line组件无法形成拐角,该属性设置无效。 |
43| strokeMiterLimit | number&nbsp;\|&nbsp;string | 4 | 设置锐角绘制成斜角的极限值。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>Line组件无法设置锐角图形,该属性设置无效。 |
44| strokeOpacity | number&nbsp;\|&nbsp;string&nbsp;\|&nbsp;[Resource](ts-types.md#resource类型) | 1 | 设置线条透明度。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>该属性的取值范围是[0.0, 1.0],若给定值小于0.0,则取值为0.0;若给定值大于1.0,则取值为1.0。 |
45| strokeWidth | Length | 1 | 设置线条宽度。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 <br/>**说明:**<br/>该属性若为string类型, 暂不支持百分比。|
46| antiAlias | boolean | true | 是否开启抗锯齿效果。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
47
48## 示例
49
50### 示例1
51
52```ts
53// xxx.ets
54@Entry
55@Component
56struct LineExample {
57  build() {
58    Column({ space: 10 }) {
59      // 线条绘制的起止点坐标均是相对于Line组件本身绘制区域的坐标
60      Line()
61        .width(200)
62        .height(150)
63        .startPoint([0, 0])
64        .endPoint([50, 100])
65        .stroke(Color.Black)
66        .backgroundColor('#F5F5F5')
67      Line()
68        .width(200)
69        .height(150)
70        .startPoint([50, 50])
71        .endPoint([150, 150])
72        .strokeWidth(5)
73        .stroke(Color.Orange)
74        .strokeOpacity(0.5)
75        .backgroundColor('#F5F5F5')
76      // strokeDashOffset用于定义关联虚线strokeDashArray数组渲染时的偏移
77      Line()
78        .width(200)
79        .height(150)
80        .startPoint([0, 0])
81        .endPoint([100, 100])
82        .stroke(Color.Black)
83        .strokeWidth(3)
84        .strokeDashArray([10, 3])
85        .strokeDashOffset(5)
86        .backgroundColor('#F5F5F5')
87      // 当坐标点设置的值超出Line组件的宽高范围时,线条会画出组件绘制区域
88      Line()
89        .width(50)
90        .height(50)
91        .startPoint([0, 0])
92        .endPoint([100, 100])
93        .stroke(Color.Black)
94        .strokeWidth(3)
95        .strokeDashArray([10, 3])
96        .backgroundColor('#F5F5F5')
97    }
98  }
99}
100```
101
102![zh-cn_image_0000001219982725](figures/zh-cn_image_0000001219982725.png)
103
104### 示例2
105
106```ts
107// xxx.ets
108@Entry
109@Component
110struct LineExample1 {
111  build() {
112    Row({ space: 10 }) {
113      // 当LineCapStyle值为Butt时
114      Line()
115        .width(100)
116        .height(200)
117        .startPoint([50, 50])
118        .endPoint([50, 200])
119        .stroke(Color.Black)
120        .strokeWidth(20)
121        .strokeLineCap(LineCapStyle.Butt)
122        .backgroundColor('#F5F5F5').margin(10)
123      // 当LineCapStyle值为Round时
124      Line()
125        .width(100)
126        .height(200)
127        .startPoint([50, 50])
128        .endPoint([50, 200])
129        .stroke(Color.Black)
130        .strokeWidth(20)
131        .strokeLineCap(LineCapStyle.Round)
132        .backgroundColor('#F5F5F5')
133      // 当LineCapStyle值为Square时
134      Line()
135        .width(100)
136        .height(200)
137        .startPoint([50, 50])
138        .endPoint([50, 200])
139        .stroke(Color.Black)
140        .strokeWidth(20)
141        .strokeLineCap(LineCapStyle.Square)
142        .backgroundColor('#F5F5F5')
143    }
144  }
145}
146```
147
148![zh-cn_image1_0000001219982725](figures/zh-cn_image1_0000001219982725.png)
149
150### 示例3
151
152```ts
153// xxx.ets
154@Entry
155@Component
156struct LineExample {
157  build() {
158    Column() {
159      Line()
160        .width(300)
161        .height(30)
162        .startPoint([50, 30])
163        .endPoint([300, 30])
164        .stroke(Color.Black)
165        .strokeWidth(10)
166      // 设置strokeDashArray的数组间隔为 50
167      Line()
168        .width(300)
169        .height(30)
170        .startPoint([50, 20])
171        .endPoint([300, 20])
172        .stroke(Color.Black)
173        .strokeWidth(10)
174        .strokeDashArray([50])
175      // 设置strokeDashArray的数组间隔为 50, 10
176      Line()
177        .width(300)
178        .height(30)
179        .startPoint([50, 20])
180        .endPoint([300, 20])
181        .stroke(Color.Black)
182        .strokeWidth(10)
183        .strokeDashArray([50, 10])
184      // 设置strokeDashArray的数组间隔为 50, 10, 20
185      Line()
186        .width(300)
187        .height(30)
188        .startPoint([50, 20])
189        .endPoint([300, 20])
190        .stroke(Color.Black)
191        .strokeWidth(10)
192        .strokeDashArray([50, 10, 20])
193      // 设置strokeDashArray的数组间隔为 50, 10, 20, 30
194      Line()
195        .width(300)
196        .height(30)
197        .startPoint([50, 20])
198        .endPoint([300, 20])
199        .stroke(Color.Black)
200        .strokeWidth(10)
201        .strokeDashArray([50, 10, 20, 30])
202
203    }
204  }
205}
206```
207
208![zh-cn_image2_0000001219982725](figures/zh-cn_image2_0000001219982725.PNG)
209