Vue+echarts realizes stacked bar chart

Vue+echarts realizes stacked bar chart

This article shares the specific code of Vue+echarts to implement stacked bar charts for your reference. The specific content is as follows

echarts-subcomponent

<template>
  <div class="chart" ref="chartEle"></div>
</template>
<script>
  import echarts from "echarts";
  import eventBus from '@/components/event/event-bus'
  export default {
    props: {
      legendData:
        type: Array,
        default: []
      },
      xAxisData: {
        type: Array,
        default: []
      },
      seriesData: {
        type: Array,
        default: []
      }

    },

    data() {
      return {
        echartsObj: null,
      }
    },

    mounted() {
      var that = this
      eventBus.$on("window-resize", target => {
        that.echartsObj && that.echartsObj.resize()
      });
    },

    methods: {
      initCharts() {
        this.echartsObj = echarts.init(this.$refs.chartEle)
        this.setOption()
        // window.onresize = function() {
        // this.echartsObj.resize()
        // }
      },

      resizeChart() {
        this.echartsObj.resize()
      },

      setOption() {
        const that = this
        var option = {
          color: ['#2DC6C8', '#B6A2DD'],
          // tooltip: { trigger: 'item', formatter: "{a} : {c}" },
          tooltip: { },
          //Data view, line chart, restore, save display mark toolbox on the right: {
            feature:
              // dataView: {show: true, readOnly: false},
              // magicType: {show: true, type: ['line', 'bar']},
              // restore: {show: true},
              // saveAsImage: {show: true}
              magicType: {
                show: true,
                type: ["line", "bar"],
                icon:
                  line: "image:///static/images/toolbox_zhexian.png",
                  bar: "image:///static/images/toolbox_zhuzhuangtu.png"
                }
              },
              restore:
                show: true,
                icon: "image:///static/images/toolbox_shuaxin.png"
              },
              saveAsImage: {
                show: true,
                icon: "image:///static/images/toolbox_xiazai.png"
              }
            }
          },
          legend: {
            bottom: '5',
            data: this.legendData
          },
          grid: {
            top: '40'
          },
          xAxis: [
            {
              type: 'category',
              data: this.xAxisData,
              axisLine: { lineStyle: { color: '#7DABB0' }} // x-axis tick mark color}
          ],
          yAxis: [
            {
              type: 'value',
              axisLine: {
                lineStyle: { color: '#7DABB0' } // y-axis color},
              axisTick: {
                lineStyle: { color: '#7DABB0' } // y-axis scale color}
            }
          ],
          series: this.seriesData
        }
        this.echartsObj.setOption(option)
      }
    }
  }
</script>
<style scoped>
  .chart {
    height: 360px;
    width: 100%;
  }
</style>

echarts parent component

<template>
  <div>
    <form-search @onSearch="onSearch"> </form-search>
    <div class="panel orioc-table-panel" slot="center">
      <!-- Chart -->
      <diversification-BarChart
        ref="barCharts"
        :legendData="legendData"
        :seriesData="seriesData"
        :xAxisData="xAxisData"
      ></diversification-BarChart>
      <!-- Table -->

    </div>


  </div>
</template>

<script>
  import FormSearch from '@/components/formSearch/formSearch'
  import eventBus from '@/components/event/event-bus'
  import DiversificationBarChart from '@/components/echarts/diversificationBarChart/index'
  export default {
    name: 'list',
    // Components: { FormSearch, eventBus, DiversificationBarChart },
    data() {
      return {
        legendData: [], // Legend xAxisData: [], // x-axis seriesData: []// Chart data}
    },
    mounted() {
      // Load list this.legendData = ['Automatic alarm', 'Manual alarm']
      this.xAxisData = ['2018-09-02', '2019-02-25', '2019-05-25']
      this.seriesData = [
        {
          name: 'Automatic alarm',
          type: 'bar',
          stack:'111', // stack barMaxWidth: '100', // maximum width of the bar chart data: [20, 30, 40]
        },
        {
          name: 'Manual alarm reception',
          type: 'bar',
          stack:'111', // stack barMaxWidth: '100', // maximum width of the bar chart data: [10, 50, 35]
        }
      ]
      this.$nextTick(() => {
        eventBus.$emit('window-resize')
        this.$refs.barCharts.initCharts()
      })
    },
    methods: {
      onSearch(data) {}
    }
  }
</script>

<style scoped>

</style>

Rendering

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue+Echart realizes three-dimensional column chart
  • Vue uses Echart icon plug-in bar chart
  • Detailed explanation of vue using Echarts to draw a bar chart
  • Vue+Echart bar chart realizes epidemic data statistics
  • Vue echarts realizes horizontal bar chart
  • Vue+echart realizes double column chart
  • Vue implements horizontal beveled bar chart
  • Vue+echarts realizes progress bar histogram
  • Vue uses Echarts to implement a three-dimensional bar chart
  • Vue+ Antv F2 realizes stacked bar chart

<<:  Things to note when migrating MySQL to 8.0 (summary)

>>:  Issues and precautions about setting maxPostSize for Tomcat

Recommend

Linux file system operation implementation

This reading note mainly records the operations r...

Summary of commonly used performance test scripts for VPS servers

Here is a common one-click performance test scrip...

IIS and APACHE implement HTTP redirection to HTTPS

IIS7 Download the HTTP Rewrite module from Micros...

A Brief Analysis of Subqueries and Advanced Applications in MySql Database

Subquery in MySql database: Subquery: nesting ano...

Detailed example of sorting function field() in MySQL

Preface In our daily development process, sorting...

Web page production TD can also overflow hidden display

Perhaps when I name this article like this, someon...

JavaScript to achieve time range effect

This article shares the specific code for JavaScr...

How to build LNMP environment on Ubuntu 20.04

Simple description Since it was built with Centos...

The most common mistakes in HTML tag writing

We better start paying attention, because HTML Po...

Zabbix monitoring docker application configuration

The application of containers is becoming more an...

Getting Started Tutorial for Beginners ④: How to bind subdirectories

To understand what this means, we must first know ...

What does the n after int(n) in MySQL mean?

You may already know that the length 1 of int(1) ...

CSS tips for controlling animation playback and pause (very practical)

Today I will introduce a very simple trick to con...

How to automatically start RabbitMq software when centos starts

1. Create a new rabbitmq in the /etc/init.d direc...