前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >[Blazor] ECharts图表之进度仪表盘

[Blazor] ECharts图表之进度仪表盘

作者头像
科控物联
发布2023-10-24 14:47:07
2920
发布2023-10-24 14:47:07
举报
文章被收录于专栏:科控自动化科控自动化

视频演示:https://mpvideo.qpic.cn/0bc3n4acwaaajiamjernjrsva36dfnxqakya.f10002.mp4?

主要代码

代码语言:javascript
复制
  private static object GetOptin(double data)
    {
      return new
      {
        series = new object[]
  {
    new
    {
      type = "gauge",
      startAngle = 180,
      endAngle = 0,
      min = 0,
      max = 240,
      splitNumber = 12,
      itemStyle = new
      {
        color = "#58D9F9",
        shadowColor = "rgba(0,138,255,0.45)",
        shadowBlur = 10,
        shadowOffsetX = 2,
        shadowOffsetY = 2
      },
      progress = new
      {
        show = true,
        roundCap = true,
        width = 18
      },
      pointer = new
      {
        icon = "path://M2090.36389,615.30999 L2090.36389,615.30999 C2091.48372,615.30999 2092.40383,616.194028 2092.44859,617.312956 L2096.90698,728.755929 C2097.05155,732.369577 2094.2393,735.416212 2090.62566,735.56078 C2090.53845,735.564269 2090.45117,735.566014 2090.36389,735.566014 L2090.36389,735.566014 C2086.74736,735.566014 2083.81557,732.63423 2083.81557,729.017692 C2083.81557,728.930412 2083.81732,728.84314 2083.82081,728.755929 L2088.2792,617.312956 C2088.32396,616.194028 2089.24407,615.30999 2090.36389,615.30999 Z",
        length = "75%",
        width = 16,
        offsetCenter = new object[] { 0, "5%" }
      },
      axisLine = new
      {
        roundCap = true,
        lineStyle = new
        {
          width = 18
        }
      },
      axisTick = new
      {
        splitNumber = 2,
        lineStyle = new
        {
          width = 2,
          color = "#999"
        }
      },
      splitLine = new
      {
        length = 12,
        lineStyle = new
        {
          width = 3,
          color = "#999"
        }
      },
      axisLabel = new
      {
        distance = 30,
        color = "#999",
        fontSize = 20
      },
      title = new
      {
        show = false
      },
      detail = new
      {
        backgroundColor = "#fff",
        borderColor = "#999",
        borderWidth = 2,
        width = "60%",
        lineHeight = 40,
        height = 40,
        borderRadius = 8,
        offsetCenter = new object[] { 0, "35%" },
        valueAnimation = true,
        formatter = "{value|"+Math.Round(data,1)+"}{unit|km/h}",
        rich = new
        {
          value = new
          {
            fontSize = 50,
            fontWeight = "bolder",
            color = "#777"
          },
          unit = new
          {
            fontSize = 20,
            color = "#999",
            padding = new[] { 0, 0, -20, 10 }
          }
        }
      },
      data = new object[]
      {
        new
        {
          value = data
        }
      }
    }
  }
      };
    }
  
代码语言:javascript
复制
https://echarts.apache.org/examples/zh/editor.html?c=gauge-progress
本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2023-10-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 科控物联 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档