1# polyline 2 3 4> **说明:** 5> 该组件从API version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 6 7绘制折线。 8 9## 权限列表 10 11无 12 13 14## 子组件 15 16支持[animate](js-components-svg-animate.md)、[animateMotion](js-components-svg-animatemotion.md)、[animateTransform](js-components-svg-animatetransform.md)。 17 18 19## 属性 20 21支持Svg组件[通用属性](js-components-svg-common-attributes.md)和以下属性。 22 23| 名称 | 类型 | 默认值 | 必填 | 描述 | 24| -------- | -------- | -------- | -------- | -------- | 25| id | string | - | 否 | 组件的唯一标识。 | 26| points | string | - | 否 | 设置折线的多个坐标点<br/>格式为[x1,y1 x2,y2 x3,y3]。<br/>支持属性动画,如果属性动画里设置的动效变化值的坐标个数与原始points的格式不一样,则无效 | 27 28 29## 示例 30 31```html 32<!-- xxx.hml --> 33<div class="container"> 34 <svg fill="white" stroke="blue" width="400" height="400"> 35 <polyline points="10,110 60,35 60,85 110,10" fill="red"></polyline> 36 <polyline points="10,200 60,125 60,175 110,100" stroke-dasharray="10 5" stroke-dashoffset="3"></polyline> 37 </svg> 38</div> 39``` 40 41 42 43