首页 前端知识 echarts象形柱状图

echarts象形柱状图

2024-05-24 08:05:40 前端知识 前端哥 894 994 我要收藏

一般常用的是柱状图可能大部分人很少关注到还有象形柱状图的存在,甚至都没听说过这个名字。象形柱状图type: pictorialBar,可以自定义条纹的颜色、高度以及每个条纹的间隔。

1、封装图表组件

<template>
  <div ref="split" :style="{height: height}"></div>
</template>

<script>
  import {
    formatNumber
  } from "@/utils/common";
  export default {
    props: {
      // 数据列表
      dataList: {  
        type: Array,
        default: () => []
      },
      // x轴坐标数据
      xData: {  
        type: Array,
        default: () => []
      },
      // y轴坐标单位
      unit: {  
        type: String,
        default: "条"
      },
      //图表的高度
      height: {
        type: String,
        default: "246px"
      }
    },
    mounted() {
      // 初始化图表
      this.initChart();
    },
    methods: {
      initChart() {
        let dom = this.$refs["split"];
        var myChart = echarts.init(dom);
        var option = {
          tooltip: {
            trigger: 'axis',
            axisPointer: {
              type: 'shadow',
              shadowStyle: {
                color: 'rgba(42,43,107,0.5)'
              }
            },
            formatter: `{b}:{${formatNumber('c',0)}}${this.unit}`
          },
          grid: {
            bottom: 24,
            top: 30,
            left: 0,
            right: 0,
            containLabel: true
          },
          dataZoom: [{
            type: "inside",
            start: 0,
            end: 100
          }],
          xAxis: {
            type: 'category',
            data: this.xData,
            axisLine: {
              lineStyle: {
                color: '#31305A'
              }
            },
            axisTick: {
              show: false
            },
            axisLabel: {
              show: true,
              textStyle: {
                fontSize: 12,
                fontWeight: 400,
                color: "#5E5E81"
              }
            }
          },
          yAxis: {
            type: 'value',
            axisLine: {
              lineStyle: {
                color: '#31305A'
              }
            },
            axisLabel: {
              textStyle: {
                fontSize: 12,
                fontWeight: 400,
                color: "#5E5E81"
              }
            },
            axisTick: {
              show: false
            },
            splitLine: {
              show: true,
              lineStyle: {
                color: '#31305A',
                type: 'solid',
              }
            }
          },
          series: [{
            data: this.dataList,
            type: 'pictorialBar',
            barWidth: 30,
            symbolRepeat: true,
            itemStyle: {
              normal: {
                color: "#342bf5"
              }
            },
            symbolMargin: 2,
            symbol: 'rect',
            symbolSize: ['100%', 5],
            symbolClip: true
          }],
        };
        option && myChart.setOption(option);
        window.addEventListener("resize", function () {
          myChart.resize();  //缩放屏幕时图表自适应
        });
      }
    },
  }
</script>

2、引用组件

<split-bar-chart :xData="xData" :dataList="TrendList" unit="条" height="220px" v-if="TrendList.length"></split-bar-chart>

3、图表数据结构

xData: x轴的坐标数据,这里存储的是年龄,数据是动态的通过调后端接口获取

['30', '30-40', '40-50', '50-60', '60']

dataList: y轴的数据,和年份一一对应

[220, 806, 613, 426, 501]

4、formatNumber是自定义n位分隔符函数

// num:数字 len:保留小数点位数
export function formatNumber(num, len) {
  num = num + "";
  if (!num.includes(".")) {
    num += ".";
  }
  if (len) {
    num = Number(num).toFixed(len).toString();
  }
  let val = num
    .replace(/(\d)(?=(\d{3})+\.)/g, function ($0, $1) {
      return $1 + ",";
    })
    .replace(/\.$/, "");
  return val;
}

效果展示

拓展 —— 象形柱状图颜色设置渐变

看了官网配置项手册以及网上参考资料发现不能直接给象形柱状图设置渐变颜色,但是可以先画渐变的柱状图,然后把象形柱状图重叠在柱状图之上来实现

  series: [
    {
      type: 'bar',
      itemStyle: {
        color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
          { offset: 0, color: '#e2f6f7' },
          { offset: 0.5, color: '#70e3e9' },
          { offset: 1, color: '#188df0' }
        ])
      },
      barWidth: 20,
      data: [68, 95, 146, 80, 117, 102, 76]
    },
    {
      type: 'pictorialBar', //设置类型为象形柱状图
      symbol: 'rect', //图形类型,带圆角的矩形
      symbolMargin: '2', //图形垂直间隔
      symbolRepeat: true, //图形是否重复
      // 分隔
      itemStyle: {
        normal: {
          color: '#fff'
        }
      },
      symbolClip: true,
      symbolSize: [20, 2],
      symbolPosition: 'start',
      // symbolOffset: [-12, -1],
      data: [68, 95, 146, 80, 117, 102, 76],
      z: 1,
      zlevel: 2 //重点,层级必须设置大于柱状图
    }
  ]

 这世界很喧嚣,做你自己就好

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

用JS生成本周日期代码

2024-04-18 17:04:15

js 递归函数

2024-05-31 10:05:46

jQuery是什么?如何使用?

2024-03-12 01:03:24

js延迟加载的六种方式

2024-05-30 10:05:51

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