HarmonyOS 希望实现数据统计报表Demo

HarmonyOS
19h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

参考代码:

// xxx.ets
@Entry
@Component
struct ProgressExample {
  @State stateType: number[] = [2, 3]
  @State aaaaa: number = 0
  aboutToAppear(): void {
    this.aaaaa = this.stateType[0] / (this.stateType[0] + this.stateType[1])
  }
  build() {
    Stack() {
      Progress({ value: 50, total: 100, type: ProgressType.Ring })
        .color(new LinearGradient(
          [
            { color: Color.Blue, offset: 0 },
            { color: Color.Blue, offset: this.aaaaa },
            { color: Color.Red, offset: this.aaaaa },
            { color: Color.Red, offset: 1.0 }
          ]))
        .value(50)
        .width(150)
        .style({ strokeWidth: 10 })
        .backgroundColor(Color.Transparent)
        .rotate({
          angle: -90
        })
        .id("progress")
        .margin({
          top: 50
        })
      Column() {
        Text("正常人数" + this.stateType[0])
        Text("异常人数" + this.stateType[1])
      }.width("100%")
    }.width("100%").backgroundColor(Color.Yellow)
  }
}
分享
微博
QQ
微信
回复
17h前
相关问题
HarmonyOS 希望能有实现topBar效果的Demo
291浏览 • 1回复 待解决
HarmonyOS 希望提供日期组件Demo
0浏览 • 0回复 待解决
HarmonyOS 希望提供分享弹窗Demo
1浏览 • 0回复 待解决
HarmonyOS 希望提供滑动控件Demo
0浏览 • 0回复 待解决
postgresql 大量数据统计问题?
2293浏览 • 2回复 待解决
HarmonyOS 录音,希望能有录音Demo
220浏览 • 1回复 待解决
HarmonyOS 希望提供半屏浮层Demo
0浏览 • 0回复 待解决
HarmonyOS 希望提供napi版的音频采集demo
246浏览 • 1回复 待解决
HarmonyOS 统计工具
12浏览 • 1回复 待解决
HarmonyOS 滤镜实现demo
18浏览 • 1回复 待解决
HarmonyOS 统计页面停留时长
31浏览 • 1回复 待解决
HarmonyOS App启动时间统计
478浏览 • 1回复 待解决
HarmonyOS 如何统计应用冷启动耗时
450浏览 • 1回复 待解决
xComponent组件帧率怎么统计?
680浏览 • 1回复 待解决