• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Polyline
2
3折线绘制组件。
4
5>  **说明:**
6>
7>  该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
8
9
10## 子组件
11
1213
14
15## 接口
16
17Polyline(value?: {width?: string | number, height?: string | number})
18
19从API version 9开始,该接口支持在ArkTS卡片中使用。
20
21**参数:**
22
23| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
24| -------- | -------- | -------- | -------- | -------- |
25| width | string \| number | 否 | 0 | 宽度。 |
26| height | string \| number | 否 | 0 | 高度。 |
27
28
29## 属性
30
31除支持[通用属性](ts-universal-attributes-size.md)外,还支持以下属性:
32
33| 名称 | 类型 | 默认值 | 描述 |
34| -------- | -------- | -------- | -------- |
35| points | Array&lt;Point&gt; | [] | 折线经过坐标点列表。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
36| fill | [ResourceColor](ts-types.md) | Color.Black | 设置填充区域颜色。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
37| fillOpacity | number&nbsp;\|&nbsp;string&nbsp;\|&nbsp;[Resource](ts-types.md#resource类型) | 1 | 设置填充区域透明度。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
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卡片中使用。|
43| strokeMiterLimit | number&nbsp;\|&nbsp;string | 4 | 设置斜接长度与边框宽度比值的极限值。斜接长度表示外边框外边交点到内边交点的距离,边框宽度即strokeWidth属性的值。<br/>**说明:**<br/>该属性取值需大于等于1,且在strokeLineJoin属性取值LineJoinStyle.Miter时生效。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
44| strokeOpacity | number&nbsp;\|&nbsp;string&nbsp;\|&nbsp;[Resource](ts-types.md#resource类型) | 1 | 设置线条透明度。<br/>**说明:**<br/>该属性的取值范围是[0.0, 1.0],若给定值小于0.0,则取值为0.0;若给定值大于1.0,则取值为1.0。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
45| strokeWidth | Length | 1 | 设置线条宽度。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。<br/>**说明:**<br/>该属性若为string类型, 暂不支持百分比。|
46| antiAlias | boolean | true | 是否开启抗锯齿效果。 <br/>从API version 9开始,该接口支持在ArkTS卡片中使用。|
47
48## Point
49
50点坐标类型。
51
52从API version 9开始,该接口支持在ArkTS卡片中使用。
53
54| 名称      | 类型定义             | 描述                                                         |
55| --------- | -------------------- | ------------------------------------------------------------ |
56| Point | [number,&nbsp;number] | 第一个参数为x轴坐标,第二个参数为y轴坐标(相对坐标)。 |
57
58## 示例
59
60```ts
61// xxx.ets
62@Entry
63@Component
64struct PolylineExample {
65  build() {
66    Column({ space: 10 }) {
67      // 在 100 * 100 的矩形框中绘制一段折线,起点(0, 0),经过(20,60),到达终点(100, 100)
68      Polyline({ width: 100, height: 100 })
69        .points([[0, 0], [20, 60], [100, 100]])
70        .fillOpacity(0)
71        .stroke(Color.Blue)
72        .strokeWidth(3)
73      // 在 100 * 100 的矩形框中绘制一段折线,起点(20, 0),经过(0,100),到达终点(100, 90)
74      Polyline()
75        .width(100)
76        .height(100)
77        .fillOpacity(0)
78        .stroke(Color.Red)
79        .strokeWidth(8)
80        .points([[20, 0], [0, 100], [100, 90]])
81          // 设置折线拐角处为圆弧
82        .strokeLineJoin(LineJoinStyle.Round)
83          // 设置折线两端为半圆
84        .strokeLineCap(LineCapStyle.Round)
85    }.width('100%')
86  }
87}
88```
89
90![zh-cn_image_0000001219744185](figures/zh-cn_image_0000001219744185.png)
91