Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
30a5d1f7
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
30a5d1f7
编写于
3月 06, 2023
作者:
O
openharmony_ci
提交者:
Gitee
3月 06, 2023
浏览文件
操作
浏览文件
下载
差异文件
!15190 修改shape组件文档stroke属性说明-monthly
Merge pull request !15190 from lanyi/cherry-pick-1677232908
上级
12741510
0220afe5
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
14 addition
and
8 deletion
+14
-8
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md
...tion-dev/reference/arkui-ts/ts-drawing-components-line.md
+12
-1
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-path.md
...tion-dev/reference/arkui-ts/ts-drawing-components-path.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md
...n-dev/reference/arkui-ts/ts-drawing-components-polygon.md
+0
-2
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md
...-dev/reference/arkui-ts/ts-drawing-components-polyline.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-rect.md
...tion-dev/reference/arkui-ts/ts-drawing-components-rect.md
+0
-3
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md
浏览文件 @
30a5d1f7
...
...
@@ -33,7 +33,7 @@ Line(value?: {width?: string | number, height?: string | number})
| endPoint | Array
<
Length
>
| [0,
0] | 直线终点坐标点(相对坐标),单位vp。 |
| fill |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| Color.Black | 设置填充区域颜色。
<br/>
**说明:**
<br/>
Line组件无法形成闭合区域,该属性设置无效。 |
| fillOpacity | number
\|
string
\|
[
Resource
](
ts-types.md#resource类型
)
| 1 | 设置填充区域透明度。
<br/>
**说明:**
<br/>
Line组件无法形成闭合区域,该属性设置无效。 |
| stroke |
[
ResourceColor
](
ts-types.md
#resourcecolor
)
| Color.Black | 设置线条颜色
。 |
| stroke |
[
ResourceColor
](
ts-types.md
)
| - | 设置边框颜色,不设置时,默认没有边框线条
。 |
| strokeDashArray | Array
<
Length
>
| [] | 设置线条间隙。 |
| strokeDashOffset | number
\|
string | 0 | 线条绘制起点的偏移量。 |
| strokeLineCap |
[
LineCapStyle
](
ts-appendix-enums.md#linecapstyle
)
| LineCapStyle.Butt | 设置线条端点绘制样式。 |
...
...
@@ -58,6 +58,7 @@ struct LineExample {
Line
()
.
startPoint
([
0
,
0
])
.
endPoint
([
50
,
100
])
.
stroke
(
Color
.
Black
)
.
backgroundColor
(
'
#F5F5F5
'
)
Line
()
.
width
(
200
)
...
...
@@ -72,6 +73,7 @@ struct LineExample {
Line
({
width
:
50
,
height
:
50
})
.
startPoint
([
0
,
0
])
.
endPoint
([
100
,
100
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
3
)
.
strokeDashArray
([
10
,
3
])
.
backgroundColor
(
'
#F5F5F5
'
)
...
...
@@ -79,6 +81,7 @@ struct LineExample {
Line
({
width
:
50
,
height
:
50
})
.
startPoint
([
0
,
0
])
.
endPoint
([
100
,
100
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
3
)
.
strokeDashArray
([
10
,
3
])
.
strokeDashOffset
(
5
)
...
...
@@ -105,6 +108,7 @@ struct LineExample1 {
.
height
(
200
)
.
startPoint
([
50
,
50
])
.
endPoint
([
50
,
200
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
20
)
.
strokeLineCap
(
LineCapStyle
.
Butt
)
.
backgroundColor
(
'
#F5F5F5
'
).
margin
(
10
)
...
...
@@ -114,6 +118,7 @@ struct LineExample1 {
.
height
(
200
)
.
startPoint
([
50
,
50
])
.
endPoint
([
50
,
200
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
20
)
.
strokeLineCap
(
LineCapStyle
.
Round
)
.
backgroundColor
(
'
#F5F5F5
'
)
...
...
@@ -123,6 +128,7 @@ struct LineExample1 {
.
height
(
200
)
.
startPoint
([
50
,
50
])
.
endPoint
([
50
,
200
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
20
)
.
strokeLineCap
(
LineCapStyle
.
Square
)
.
backgroundColor
(
'
#F5F5F5
'
)
...
...
@@ -145,29 +151,34 @@ struct LineExample {
Line
()
.
startPoint
([
50
,
30
])
.
endPoint
([
300
,
30
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
10
)
// 设置strokeDashArray的数组间隔为 50
Line
()
.
startPoint
([
50
,
20
])
.
endPoint
([
300
,
20
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
10
)
.
strokeDashArray
([
50
])
// 设置strokeDashArray的数组间隔为 50, 10
Line
()
.
startPoint
([
50
,
20
])
.
endPoint
([
300
,
20
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
10
)
.
strokeDashArray
([
50
,
10
])
// 设置strokeDashArray的数组间隔为 50, 10, 20
Line
()
.
startPoint
([
50
,
20
])
.
endPoint
([
300
,
20
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
10
)
.
strokeDashArray
([
50
,
10
,
20
])
// 设置strokeDashArray的数组间隔为 50, 10, 20, 30
Line
()
.
startPoint
([
50
,
20
])
.
endPoint
([
300
,
20
])
.
stroke
(
Color
.
Black
)
.
strokeWidth
(
10
)
.
strokeDashArray
([
50
,
10
,
20
,
30
])
...
...
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-path.md
浏览文件 @
30a5d1f7
...
...
@@ -32,7 +32,7 @@ Path(value?: { width?: number | string; height?: number | string; commands?: str
| commands | string | '' | 路径绘制的命令字符串,单位为px。像素单位转换方法请参考
[
像素单位转换
](
ts-pixel-units.md
)
。 |
| fill |
[
ResourceColor
](
ts-types.md
)
| Color.Black | 设置填充区域颜色。 |
| fillOpacity | number
\|
string
\|
[
Resource
](
ts-types.md#resource类型
)
| 1 | 设置填充区域透明度。 |
| stroke |
[
ResourceColor
](
ts-types.md
)
| - |
设置线条颜色
。 |
| stroke |
[
ResourceColor
](
ts-types.md
)
| - |
设置边框颜色,不设置时,默认没有边框
。 |
| strokeDashArray | Array
<
Length
>
| [] | 设置线条间隙。 |
| strokeDashOffset | number
\|
string | 0 | 线条绘制起点的偏移量。 |
| strokeLineCap |
[
LineCapStyle
](
ts-appendix-enums.md#linecapstyle
)
| LineCapStyle.Butt | 设置线条端点绘制样式。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-polygon.md
浏览文件 @
30a5d1f7
...
...
@@ -65,7 +65,6 @@ struct PolygonExample {
Polygon
({
width
:
100
,
height
:
100
})
.
points
([[
0
,
0
],
[
50
,
100
],
[
100
,
0
]])
.
fill
(
Color
.
Green
)
.
stroke
(
Color
.
Transparent
)
// 在 100 * 100 的矩形框中绘制一个四边形,起点(0, 0),经过(0, 100)和(100, 100),终点(100, 0)
Polygon
().
width
(
100
).
height
(
100
)
.
points
([[
0
,
0
],
[
0
,
100
],
[
100
,
100
],
[
100
,
0
]])
...
...
@@ -77,7 +76,6 @@ struct PolygonExample {
.
points
([[
50
,
0
],
[
0
,
50
],
[
20
,
100
],
[
80
,
100
],
[
100
,
50
]])
.
fill
(
Color
.
Red
)
.
fillOpacity
(
0.6
)
.
stroke
(
Color
.
Transparent
)
}.
width
(
'
100%
'
).
margin
({
top
:
10
})
}
}
...
...
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-polyline.md
浏览文件 @
30a5d1f7
...
...
@@ -33,7 +33,7 @@ Polyline(value?: {width?: string | number, height?: string | number})
| points | Array
<
Point
>
| [] | 折线经过坐标点列表。 |
| fill |
[
ResourceColor
](
ts-types.md
)
| Color.Black | 设置填充区域颜色。 |
| fillOpacity | number
\|
string
\|
[
Resource
](
ts-types.md#resource类型
)
| 1 | 设置填充区域透明度。 |
| stroke |
[
ResourceColor
](
ts-types.md
)
| - | 设置
线条颜色
。 |
| stroke |
[
ResourceColor
](
ts-types.md
)
| - | 设置
边框颜色,不设置时,默认没有边框线条
。 |
| strokeDashArray | Array
<
Length
>
| [] | 设置线条间隙。 |
| strokeDashOffset | number
\|
string | 0 | 线条绘制起点的偏移量。 |
| strokeLineCap |
[
LineCapStyle
](
ts-appendix-enums.md#linecapstyle
)
| LineCapStyle.Butt | 设置线条端点绘制样式。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-rect.md
浏览文件 @
30a5d1f7
...
...
@@ -66,7 +66,6 @@ struct RectExample {
// 绘制90% * 50矩形
Rect
({
width
:
'
90%
'
,
height
:
50
})
.
fill
(
Color
.
Pink
)
.
stroke
(
Color
.
Transparent
)
// 绘制90% * 50的矩形框
Rect
()
.
width
(
'
90%
'
)
...
...
@@ -81,7 +80,6 @@ struct RectExample {
.
radiusHeight
(
20
)
.
radiusWidth
(
40
)
.
fill
(
Color
.
Pink
)
.
stroke
(
Color
.
Transparent
)
// 绘制90% * 80的矩形, 圆角宽高为20
Rect
({
width
:
'
90%
'
,
height
:
80
})
.
radius
(
20
)
...
...
@@ -92,7 +90,6 @@ struct RectExample {
Rect
({
width
:
'
90%
'
,
height
:
80
})
.
radius
([[
40
,
40
],
[
20
,
20
],
[
40
,
40
],
[
20
,
20
]])
.
fill
(
Color
.
Pink
)
.
stroke
(
Color
.
Transparent
)
}.
width
(
'
100%
'
).
margin
({
top
:
5
})
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录