• vue echart详细使用说明


    vue ECharts 使用详细步骤:

    1. 安装ECharts:
      Vue项目中使用ECharts之前,你需要先安装ECharts库。可以使用npm或yarn来安装ECharts依赖:

      npm install echarts --save
      
      • 1

      或者

      yarn add echarts
      
      • 1
    2. 导入ECharts库:
      在Vue组件中,你需要导入ECharts库,并创建一个ECharts实例来绘制图表。可以在需要使用ECharts的组件中导入ECharts库:

      import echarts from 'echarts';
      
      • 1
    3. 创建图表容器:
      在Vue模板中,你需要创建一个用于显示图表的容器元素。可以在模板中添加一个具有唯一ID的div元素,作为图表的容器:

      <template>
        <div id="chartContainer">div>
      template>
      
      • 1
      • 2
      • 3
    4. 初始化ECharts实例:
      在Vue组件的mounted生命周期钩子中,你可以初始化ECharts实例,并指定图表的容器和配置项:

      mounted() {
        // 获取图表容器元素
        const chartContainer = document.getElementById('chartContainer');
        
        // 创建ECharts实例
        const chart = echarts.init(chartContainer);
        
        // 设置图表配置项
        const options = {
          // 配置项内容,例如:图表类型、数据、样式等
        };
        
        // 使用配置项绘制图表
        chart.setOption(options);
      }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15
    5. 配置图表选项:
      options对象中,你可以配置图表的类型、数据、样式等。
      部分选项表:
      下面是对常用的图表选项进行详细说明,并附上示例代码:

    6. title

    title: {
      text: '图表标题',
      subtext: '副标题'
    }
    
    • 1
    • 2
    • 3
    • 4
    1. tooltip
    tooltip: {
      trigger: 'axis', // 提示框触发条件,可选值:'axis'(坐标轴触发), 'item'(数据项触发)
      formatter: '{b}: {c}' // 提示框的格式化函数,{b}表示类目轴的值,{c}表示数据值
    }
    
    • 1
    • 2
    • 3
    • 4
    1. legend
    legend: {
      data: ['系列1', '系列2'] // 图例的名称,对应series中的name属性
    }
    
    • 1
    • 2
    • 3
    1. xAxisyAxis
    xAxis: {
      type: 'category', // 坐标轴类型,可选值:'category'(类目轴),'value'(数值轴),'time'(时间轴),'log'(对数轴)
      data: ['数据1', '数据2', '数据3'] // 类目轴的数据
    },
    yAxis: {
      type: 'value' // 数值轴
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    1. series
    series: [{
      name: '系列1',
      type: 'bar', // 柱状图
      data: [100, 200, 300] // 数据值
    }, {
      name: '系列2',
      type: 'line', // 折线图
      data: [50, 150, 250]
    }]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    1. grid
    grid: {
      left: '10%', // 网格左侧的距离
      right: '10%', // 网格右侧的距离
      top: '10%', // 网格顶部的距离
      bottom: '10%' // 网格底部的距离
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    1. toolbox
    toolbox: {
      feature: {
        saveAsImage: {}, // 保存图表为图片
        dataView: {} // 数据视图
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    1. dataZoom
    dataZoom: [{
      type: 'slider', // 滑动条型数据区域缩放
      start: 0, // 起始位置百分比
      end: 50 // 结束位置百分比
    }]
    
    • 1
    • 2
    • 3
    • 4
    • 5
    1. visualMap
    visualMap: {
      type: 'continuous', // 连续型视觉映射
      min: 0, // 最小值
      max: 100, // 最大值
      color: ['blue', 'red'] // 映射的颜色范围
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    1. 更新图表数据:
      如果你需要在Vue组件中动态更新图表数据,可以使用chart.setOption(options)方法来更新图表的配置项。

    柱状图和折线图,饼状图的的示例

    以下是柱状图、折线图和饼状图的示例代码,你可以根据需要在Vue项目中使用它们:

    1. 柱状图示例:
    <template>
      <div id="barChart" style="width: 600px; height: 400px;"></div>
    </template>
    
    <script>
    import echarts from 'echarts';
    
    export default {
      mounted() {
        const chartContainer = document.getElementById('barChart');
        const chart = echarts.init(chartContainer);
        
        const options = {
          title: {
            text: '柱状图示例',
          },
          xAxis: {
            type: 'category',
            data: ['A', 'B', 'C', 'D', 'E'],
          },
          yAxis: {
            type: 'value',
          },
          series: [
            {
              type: 'bar',
              data: [10, 20, 30, 40, 50],
            },
          ],
        };
        
        chart.setOption(options);
      },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    1. 折线图示例:
    <template>
      <div id="lineChart" style="width: 600px; height: 400px;"></div>
    </template>
    
    <script>
    import echarts from 'echarts';
    
    export default {
      mounted() {
        const chartContainer = document.getElementById('lineChart');
        const chart = echarts.init(chartContainer);
        
        const options = {
          title: {
            text: '折线图示例',
          },
          xAxis: {
            type: 'category',
            data: ['A', 'B', 'C', 'D', 'E'],
          },
          yAxis: {
            type: 'value',
          },
          series: [
            {
              type: 'line',
              data: [10, 20, 30, 40, 50],
            },
          ],
        };
        
        chart.setOption(options);
      },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    1. 饼状图示例:
    <template>
      <div id="pieChart" style="width: 600px; height: 400px;"></div>
    </template>
    
    <script>
    import echarts from 'echarts';
    
    export default {
      mounted() {
        const chartContainer = document.getElementById('pieChart');
        const chart = echarts.init(chartContainer);
        
        const options = {
          title: {
            text: '饼状图示例',
          },
          series: [
            {
              type: 'pie',
              data: [
                { name: 'A', value: 10 },
                { name: 'B', value: 20 },
                { name: 'C', value: 30 },
                { name: 'D', value: 40 },
                { name: 'E', value: 50 },
              ],
            },
          ],
        };
        
        chart.setOption(options);
      },
    };
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
  • 相关阅读:
    探索艺术新边界:Stable Diffusion 在艺术领域的创新应用
    一道有意思的题 洛谷P2647 最大收益
    [树形dp]Orgrimmar 2022杭电多校第8场 1008
    英语语法基础--思维导图
    Turtlebot2简单控制
    Mybatis-注解开发
    springboot做系统一定要前后端吗?只有前端或者只有后端可以吗?
    Linux内存管理(十九):slab 分配器概述和初始化
    jmeter接口测试及详细步骤以及项目实战教程
    数据结构 树 Tree
  • 原文地址:https://blog.csdn.net/ACCPluzhiqi/article/details/132742226