208Echarts - 数据集(Encode and Matrix)

简介: 208Echarts - 数据集(Encode and Matrix)
效果图

源代码
 <!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>ECharts</title>
    <!-- 引入 echarts.js -->
    <script src="js/echarts.min.js"></script>
    <script src="js/jquery-1.11.0.min.js"></script>
    <script src="dist/extension/dataTool.js"></script>
  </head>
  <body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style="width: 1024px;height:768px;"></div>
    <script type="text/javascript">
      // 基于准备好的dom,初始化echarts实例
      var myChart = echarts.init(document.getElementById('main'));
      var option;
      $.get('data/life-expectancy-table.json', function(data) {
        var sizeValue = '57%';
        var symbolSize = 2.5;
        option = {
          legend: {},
          tooltip: {},
          toolbox: {
            left: 'center',
            feature: {
              dataZoom: {}
            }
          },
          grid: [{
              right: sizeValue,
              bottom: sizeValue
            },
            {
              left: sizeValue,
              bottom: sizeValue
            },
            {
              right: sizeValue,
              top: sizeValue
            },
            {
              left: sizeValue,
              top: sizeValue
            }
          ],
          xAxis: [{
              type: 'value',
              gridIndex: 0,
              name: 'Income',
              axisLabel: {
                rotate: 50,
                interval: 0
              }
            },
            {
              type: 'category',
              gridIndex: 1,
              name: 'Country',
              boundaryGap: false,
              axisLabel: {
                rotate: 50,
                interval: 0
              }
            },
            {
              type: 'value',
              gridIndex: 2,
              name: 'Income',
              axisLabel: {
                rotate: 50,
                interval: 0
              }
            },
            {
              type: 'value',
              gridIndex: 3,
              name: 'Life Expectancy',
              axisLabel: {
                rotate: 50,
                interval: 0
              }
            }
          ],
          yAxis: [{
              type: 'value',
              gridIndex: 0,
              name: 'Life Expectancy'
            },
            {
              type: 'value',
              gridIndex: 1,
              name: 'Income'
            },
            {
              type: 'value',
              gridIndex: 2,
              name: 'Population'
            },
            {
              type: 'value',
              gridIndex: 3,
              name: 'Population'
            }
          ],
          dataset: {
            dimensions: [
              'Income',
              'Life Expectancy',
              'Population',
              'Country',
              {
                name: 'Year',
                type: 'ordinal'
              }
            ],
            source: data
          },
          series: [{
              type: 'scatter',
              symbolSize: symbolSize,
              xAxisIndex: 0,
              yAxisIndex: 0,
              encode: {
                x: 'Income',
                y: 'Life Expectancy',
                tooltip: [0, 1, 2, 3, 4]
              }
            },
            {
              type: 'scatter',
              symbolSize: symbolSize,
              xAxisIndex: 1,
              yAxisIndex: 1,
              encode: {
                x: 'Country',
                y: 'Income',
                tooltip: [0, 1, 2, 3, 4]
              }
            },
            {
              type: 'scatter',
              symbolSize: symbolSize,
              xAxisIndex: 2,
              yAxisIndex: 2,
              encode: {
                x: 'Income',
                y: 'Population',
                tooltip: [0, 1, 2, 3, 4]
              }
            },
            {
              type: 'scatter',
              symbolSize: symbolSize,
              xAxisIndex: 3,
              yAxisIndex: 3,
              encode: {
                x: 'Life Expectancy',
                y: 'Population',
                tooltip: [0, 1, 2, 3, 4]
              }
            }
          ]
        };
        myChart.setOption(option);
      });
      //myChart.setOption(option);
    </script>
  </body>
</html>
目录
相关文章
206Echarts - 数据集(Simple Encode)
206Echarts - 数据集(Simple Encode)
61 0
|
26天前
|
小程序 前端开发 JavaScript
微信小程序图表制作利器:ECharts组件的使用与技巧
微信小程序图表制作利器:ECharts组件的使用与技巧
48 1
|
22天前
|
JavaScript
vue中使用echarts绘制双Y轴图表时,刻度没有对齐的两种解决方法
vue中使用echarts绘制双Y轴图表时,刻度没有对齐的两种解决方法
142 0
|
2月前
|
Web App开发 数据可视化 前端开发
Echart的使用初体验,Echarts的基本使用及语法格式,简单图表绘制和使用及图例添加【学习笔记】
本文介绍了ECharts的基本使用和语法格式,包括如何引入ECharts、创建容器、初始化echarts实例对象、配置option参数和一些基础图表的绘制方法。文章还提供了简单图表绘制和使用图例添加的示例代码,以及对ECharts特性和优势的概述。
Echart的使用初体验,Echarts的基本使用及语法格式,简单图表绘制和使用及图例添加【学习笔记】
|
3月前
|
小程序 JavaScript
微信小程序使用echarts图表(ec-canvas)
这篇文章介绍了在微信小程序中使用`ec-canvas`集成echarts图表的方法,包括解决加载时报错的问题、配置图表组件、以及在小程序页面中引入和使用这些图表组件的步骤。
447 1
微信小程序使用echarts图表(ec-canvas)
|
3月前
|
前端开发 数据可视化 JavaScript
Echarts如何实现多图表缩放和自适应?附源码
Echarts如何实现多图表缩放和自适应?附源码
Echarts如何实现多图表缩放和自适应?附源码
|
3月前
|
XML SQL JavaScript
在vue页面引入echarts,图表的数据来自数据库 springboot+mybatis+vue+elementui+echarts实现图表的制作
这篇文章介绍了如何在Vue页面中结合SpringBoot、MyBatis、ElementUI和ECharts,实现从数据库获取数据并展示为图表的过程,包括前端和后端的代码实现以及遇到的问题和解决方法。
在vue页面引入echarts,图表的数据来自数据库 springboot+mybatis+vue+elementui+echarts实现图表的制作
|
3月前
Echarts——如何默认选中图表并显示tooltip
Echarts——如何默认选中图表并显示tooltip
58 1
|
3月前
|
JavaScript
Echarts——VUE中非根节点时不显示图表也无报错
Echarts——VUE中非根节点时不显示图表也无报错
37 1
|
4月前
|
开发框架 前端开发 JavaScript
循序渐进VUE+Element 前端应用开发(10)--- 基于vue-echarts处理各种图表展示
循序渐进VUE+Element 前端应用开发(10)--- 基于vue-echarts处理各种图表展示