207Echarts - 数据集(Series Layout By Column or Row)

简介: 207Echarts - 数据集(Series Layout By Column or Row)
效果图

源代码
<!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;
      option = {
          legend: {},
          tooltip: {},
          dataset: {
              source: [
                  ['product', '2012', '2013', '2014', '2015'],
                  ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],
                  ['Milk Tea', 86.5, 92.1, 85.7, 83.1],
                  ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]
              ]
          },
          xAxis: [
              {type: 'category', gridIndex: 0},
              {type: 'category', gridIndex: 1}
          ],
          yAxis: [
              {gridIndex: 0},
              {gridIndex: 1}
          ],
          grid: [
              {bottom: '55%'},
              {top: '55%'}
          ],
          series: [
              // These series are in the first grid.
              {type: 'bar', seriesLayoutBy: 'row'},
              {type: 'bar', seriesLayoutBy: 'row'},
              {type: 'bar', seriesLayoutBy: 'row'},
              // These series are in the second grid.
              {type: 'bar', xAxisIndex: 1, yAxisIndex: 1},
              {type: 'bar', xAxisIndex: 1, yAxisIndex: 1},
              {type: 'bar', xAxisIndex: 1, yAxisIndex: 1},
              {type: 'bar', xAxisIndex: 1, yAxisIndex: 1}
          ]
      };
      myChart.setOption(option);
    </script>
  </body>
</html>
目录
相关文章
|
19天前
【echarts报错】line series not exists,should be same with series name or data name
【echarts报错】line series not exists,should be same with series name or data name
|
6月前
|
异构计算
267Echarts - GL 关系图(GraphGL GPU Layout)
267Echarts - GL 关系图(GraphGL GPU Layout)
28 0
|
6月前
200Echarts - 自定义系列(Use custom series to draw wind vectors)
200Echarts - 自定义系列(Use custom series to draw wind vectors)
15 0
|
6月前
125Echarts - 关系图(Force Layout)
125Echarts - 关系图(Force Layout)
23 0
|
6月前
123Echarts - 关系图(Force Layout)
123Echarts - 关系图(Force Layout)
14 0
|
6月前
55Echarts - 柱状图(Series Layout By Column or Row)
55Echarts - 柱状图(Series Layout By Column or Row)
18 0
|
9月前
|
JavaScript 数据处理
Echarts数据series组件中数组直接进行排序
Echarts数据series组件中数组直接进行排序
153 0
|
9月前
|
Web App开发 XML JSON
echarts的series——折线图,饼图,柱状图,散点图的配置
echarts的series——折线图,饼图,柱状图,散点图的配置
291 0
|
2月前
|
数据可视化
echarts图表坐标轴数据标签添加下划线
echarts图表坐标轴数据标签添加下划线
55 0
|
2月前
|
前端开发 JavaScript BI
Django教程第5章 | Web开发实战-数据统计图表(echarts、highchart)
使用echarts和highcharts图表库实现折线图、柱状图、饼图和数据集图
64 2