首页 前端知识 echarts-柱状图(竖)

echarts-柱状图(竖)

2024-07-20 17:07:47 前端知识 前端哥 963 193 我要收藏

hiddenDangerManageEchart(){

      const name=['管道', '阀门' ,'使用场所' ,'用气设备' ,'电气', '报警装置'],
        data0=[51.8,31.8,88.2,88.2,88.2,88.2],data1=[21.79,11.74,72.1,88.2,88.2,88.2];
      let chartDom2 = document.getElementById("hidden_danger_manage_Echart");
      let myChart2 = echarts.init(chartDom2);
      let option2 = {
        backgroundColor: "",
        tooltip: {
          //提示框组件
          trigger: "axis",
          formatter: "{b}<br />{a0}: {c0}<br />{a1}: {c1}",
          axisPointer: {
            type: "shadow",
            label: {
              backgroundColor: "#6a7985",
            },
          },
          textStyle: {
            color: "#ffb24c",
            fontStyle: "normal",
            fontFamily: "微软雅黑",
            fontSize: 12,
          },
        },
        legend: {
          data: ["隐患", "已整改"],
          icon: "react",
          top: "3%",
          itemWidth: 9,
          itemHeight: 6,
          textStyle: {
            color: '#98B7C9',
            fontSize: 12,
          },

        },
        grid: {
          left: "1%",
          right: "0%",
          bottom: "6%",
          top: '18%',
          padding: "0 0 10 0",
          containLabel: true,
        },
        xAxis: [
          {
            type: "category",
            boundaryGap: true, //坐标轴两边留白
            data: name,
            axisLabel: {
              //坐标轴刻度标签的相关设置。
              interval: 0, //设置为 1,表示『隔一个标签显示一个标签』
              margin: 15,
              textStyle: {
                color: "#98B7C9",
                fontStyle: "normal",
                fontFamily: "微软雅黑",
                fontSize: 12,
              },
            },
            axisTick: {
              //坐标轴刻度相关设置。
              show: false,
            },
            axisLine: {
              //坐标轴轴线相关设置
              lineStyle: {
                color: "#fff",
                opacity: 0.2,
              },
            },
            splitLine: {
              //坐标轴在 grid 区域中的分隔线。
              show: false,
            },
          },
        ],
        yAxis: [
          {
            type: "value",
            splitNumber: 5,
            axisLabel: {
              textStyle: {
                color: '#83C3DB',
                fontStyle: "normal",
                fontFamily: "微软雅黑",
                fontSize: 12,
              },
            },
            axisLine: {
              show: false,
            },
            axisTick: {
              show: false,
            },
            splitLine: {
              show: true,
              lineStyle: {
                color: ["#fff"],
                opacity: 0.06,
              },
            },
          },
        ],
        series: [
          {
            name: "隐患",
            type: "bar",
            data: data0,
            barWidth: 7,
            barGap: 0, //柱间距离
            label: {
              //图形上的文本标签
              normal: {
                show: false,
                position: "top",
                textStyle: {
                  color: "#fefefe",
                  fontStyle: "normal",
                  fontFamily: "微软雅黑",
                  fontSize: 12,
                },
              },
            },
            itemStyle: {
              //图形样式
              normal: {
                barBorderRadius: [1, 1, 0, 0],
                color: new echarts.graphic.LinearGradient(
                  0,
                  0,
                  0,
                  1,
                  [
                    {
                      offset: 1,
                      color: "rgba(78,103,131,0.9)",
                    },
                    {
                      offset: 0,
                      color: "rgb(167,214,236)",
                    },
                  ],
                  false
                ),
              },
            },
          },
          {
            name: "已整改",
            type: "bar",
            data: data1,
            barWidth: 7,
            barGap:0.5, //柱间距离
            label: {
              //图形上的文本标签
              normal: {
                show: false,
                position: "top",
                textStyle: {
                  color: "#fefefe",
                  fontStyle: "normal",
                  fontFamily: "微软雅黑",
                  fontSize: 12,
                },
              },
            },
            itemStyle: {
              //图形样式
              normal: {
                barBorderRadius: [1, 1, 0, 0],
                color: new echarts.graphic.LinearGradient(
                  0,
                  0,
                  0,
                  1,
                  [
                    {
                      offset: 1,
                      color: "rgba(195,143,96,0.9)",
                    },
                    {
                      offset: 0,
                      color: "rgba(254,220,187,0.9)",
                    },
                  ],
                  false
                ),
              },
            },
          },
        ],
      };

      option2 && myChart2.setOption(option2);
      this.echartsEntityArr.push(myChart2);
    },

 nonOperatingEcharts(operationData){
        let chartDom = document.getElementById("nonOperatingEcharts");
        let myChart = echarts.init(chartDom);
       let option = {

          tooltip: {
            trigger: 'axis',
            axisPointer: {
              type: 'shadow'
            }
          },

          grid: {
            top: '10%',
            left: '5%',
            right: '5%',
            bottom: '15%',
            containLabel: true
          },
          xAxis: [{
            type: 'category',
            data: ['第一阶段', '第二阶段', '第三阶段', '第四阶段'],
            axisTick: {
              show: false,//刻度
            },
            splitLine: {
              show: false,
            },
            axisLine: {
              show: true,
              lineStyle:{
                color: "#192935"
              },
            },

            axisLabel: {
              color: '#83C3DB',
              fontSize: 12,
              fontWeight: 600,
              interval: 0,
              padding: [8, 0, 0, 0]
            },
          }],
          yAxis: [{
            type: 'value',
            name: '',
            nameTextStyle: {
              color: "#83C3DB",
              fontSize: 12,
              padding: [0, 0, 6, -60],
            },
            axisLabel: {
              show: true,
              textStyle: {
                color: '#83C3DB',

              },
              padding: 10
            },
            axisLine: {
              show: true,
              lineStyle:{
                color: "#192935"
              },
            },
            splitLine :{    //网格线
              lineStyle:{
                type:'dashed',    //设置网格线类型 dotted:虚线   solid:实线
                color: "#192935"
              },

              show:true //隐藏或显示
            }


          }],
          series: [{
            name: '非经营类分析',
            type: 'bar',
            emphasis: {
              focus: 'series'
            },
            barWidth: 13,
            label: {
              normal: {
                show: false,
                position: "top",
                formatter: function (data) {
                  return '{a0|' + data.value + '}';
                },
                rich: {
                  a0: {
                    color: '#5470c6',
                    fontSize: 12,
                    fontFamily: 'DIN',
                    fontWeight: 'bold'
                  },
                }
              },
            },
            itemStyle: {
              color:new echarts.graphic.LinearGradient(
                0,
                1,
                0,
                0,
                [
                  {
                    offset: 0,
                    color: '#4E6783',
                  },
                  {
                    offset: 1,
                    color: '#A7D6EC',
                  },
                ],
                false
              ),
            },
            //188.82, 180, 200, 260
            data: [{
              value: 188.82,
              label: {
                show: false
              }
            },
              {
                value: 180,
                label: {
                  show: false
                }
              }, {
                value: 200,
                label: {
                  show: false
                }
              },
              {
                value: 260,
                label: {
                  show: false
                }
              }
            ]
          },]
        };

        option && myChart.setOption(option);
        this.echartsEntityArr.push(myChart);

      },
转载请注明出处或者链接地址:https://www.qianduange.cn//article/14056.html
标签
评论
发布的文章

HTML5 移动开发秘籍(一)

2024-08-05 23:08:12

【HTML5系列教程】

2024-08-05 23:08:12

HTML5面试题

2024-08-05 23:08:06

JQuery基础---01

2024-08-05 23:08:34

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!