@Entry
@Component
struct Index {
build() {
Column() {
Progress({ value:
20
, total:
150
,
type
: ProgressType.ScaleRing }).width(
100
).height(
100
)
.backgroundColor(Color.Black)
.style({ scaleCount:
20
, scaleWidth:
5
})
/
/
设置环形有刻度进度条总刻度数为
20
,刻度宽度为
5vp
Progress({ value:
20
, total:
150
,
type
: ProgressType.ScaleRing }).width(
100
).height(
100
)
.backgroundColor(Color.Black)
.style({ strokeWidth:
15
, scaleCount:
20
, scaleWidth:
5
})
/
/
设置环形有刻度进度条宽度
15
,总刻度数为
20
,刻度宽度为
5vp
Progress({ value:
20
, total:
150
,
type
: ProgressType.ScaleRing }).width(
100
).height(
100
)
.backgroundColor(Color.Black)
.style({ strokeWidth:
15
, scaleCount:
20
, scaleWidth:
3
})
/
/
设置环形有刻度进度条宽度
15
,总刻度数为
20
,刻度宽度为
3vp
}
.padding(
10
)
.backgroundColor(
0xDCDCDC
)
.width(
'100%'
)
.height(
'100%'
)
}
}