您当前的位置:首页 > 网站建设 > javascript
| php | asp | css | H5 | javascript | Mysql | Dreamweaver | Delphi | 网站维护 | 帝国cms | React | 考试系统 | ajax |

vue echarts实现横向柱状图

51自学网 2022-05-02 21:32:17
  javascript

本文实例为大家分享了vue echarts实现横向柱状图的具体代码,供大家参考,具体内容如下

实现效果:

代码:

<template>  <div class="OverYearsPompany">    <div id="OverYearsPompanyChart" style="flex: 1; height: 368px; margin-top: -42px"></div>  </div></template><script>import { getProposedInvestments } from '@/api/government';const colors = [  ['rgba(240, 7, 100, 1)', 'rgba(0, 215, 229, 1)'],  ['rgba(240, 7, 100, 1)', 'rgba(0, 215, 229, 1)'],  ['rgba(240, 7, 100, 1)', 'rgba(0, 215, 229, 1)'],  ['rgba(240, 7, 100, 1)', 'rgba(0, 215, 229, 1)'],];export default {  data() {    return {      investmentsWayData: [],      investmentsWayDataCount: [],      investmentsWayDataCounts: [],    };  },  mounted() {    this.getProposedInvestments();  },  methods: {    initMap() {      var myChart = this.$echarts.init(document.getElementById('OverYearsPompanyChart'));      const option = {        tooltip: {          show: true,          trigger: 'axis',          axisPointer: {            type: 'shadow',          },        },        xAxis: {          type: 'value',          axisLabel: {            show: true,            color: '#02CFFCFF',            fontFamily: 'TencentSans',          },          axisLine: {            show: true,            lineStyle: {              color: '#02CFFCFF',            },          },          splitLine: {            show: true,            lineStyle: {              color: 'rgba(71, 126, 171, 1)',            },          },        },        yAxis: [          {            type: 'category',            inverse: true, //倒叙            axisLabel: {              color: '#02CFFCFF',              fontFamily: 'TencentSans',            },            axisTick: {              show: false,            },            axisLine: {              show: true,              lineStyle: {                color: '#02CFFCFF',              },            },            splitLine: {              show: true,              lineStyle: {                type: 'dotted',                color: 'rgba(71, 126, 171, 1)',              },            },            data: this.investmentsWayData,          },        ],        series: [          {            type: 'bar',            barWidth: 15,            label: {              position: ['98%', -20],              show: true,              color: '#fff',              fontFamily: 'TencentSans',            },            data: this.investmentsWayDataCount,            itemStyle: {              color(params) {                const { dataIndex } = params;                let color = {                  type: 'linear',                  x: 1,                  y: 0,                  x2: 0,                  y2: 0,                  colorStops: [                    {                      offset: 0,                      color: colors[dataIndex] ? colors[dataIndex][0] : 'red',                    },                    {                      offset: 1,                      color: colors[dataIndex] ? colors[dataIndex][1] : 'red',                    },                  ],                };                return color;              },            },          },        ],      };      myChart.setOption(option);    },    getProposedInvestments() {      getProposedInvestments().then((res) => {        const { status, data } = res;        const { proposedInvestmentsWayDis } = JSON.parse(data);        if (status === 200) {          // this.investmentsWayData=[{0: "合资", 1: "合作", 2: "独资", 3: "其他"}]          this.investmentsWayData = proposedInvestmentsWayDis.map((item) => {            return item.wayDis;          });          // this.investmentsWayDataCount=[{0: "496", 1: "372", 2: "248", 3: "124"}]          this.investmentsWayDataCount = proposedInvestmentsWayDis.map((item) => {            return item.count;          });          // this.investmentsWayDataCounts=[{itemStyle:    // color:{    // 0: "rgba(240, 7, 100, 1)"    // 1: "rgba(0, 215, 229, 1)"}    // value: "496"}]          this.investmentsWayDataCounts = proposedInvestmentsWayDis.map((item, index) => {            return {              value: item.count,              itemStyle: {                color: colors[index],              },            };          });          this.initMap();        }      });    },  },};</script>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持wanshiok.com。


webpack -v报错解决方案
vue axios拦截器常用之重复请求取消
51自学网,即我要自学网,自学EXCEL、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。
京ICP备13026421号-1