zoukankan      html  css  js  c++  java
  • echarts柱状图使用

    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport"
    content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>echart使用</title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <script src="./echarts.min.js"></script>
    </head>
    <body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style=" 600px;height:400px;"></div>
    <div id="main2" style=" 600px;height:400px;position: fixed;bottom: 0;left: 0;"></div>
    <script type="text/javascript">
    /* // 基于准备好的dom,初始化echarts实例
    var myChart = echarts.init(document.getElementById('main'));

    // 指定图表的配置项和数据
    var option = {
    title: {
    text: 'ECharts 入门示例'
    },
    tooltip: {},
    legend: {
    data:['销量']
    },
    xAxis: {
    data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
    },
    yAxis: {},
    series: [{
    name: '销量',
    type: 'bar',
    data: [5, 20, 36, 10, 10, 20]
    }]
    };

    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);*/

    /*初始化内容显示*/


    $(function(){
    // 基于准备好的dom,初始化echarts实例
    var myChart = echarts.init(document.getElementById('main'));
    showContenM();
    function showContenM() {
    $.ajax({
    type: "get",
    url: "https://api.tanwuapp.com/iOS/v2.0//website/homes",
    success: function (data) {

    var ban=data.details.banners
    console.log(ban)
    var option = {
    tooltip: {},
    legend: {
    data:['销量']
    },
    xAxis: {
    data: []
    },
    yAxis: {},
    series: [{
    name: '销量',
    type: 'bar',
    data: [5, 20, 36, 10, 10, 20]
    }]
    };
    for(var i=0;i<ban.length; i++){
    var arr1 = ban[i].name;
    var arr2 = ban[i].product_id;
    console.log(arr1)
    option.xAxis.data.push(arr1);
    option.series[0].data.push(arr2);
    }
    // 使用刚指定的配置项和数据显示图表。
    myChart.setOption(option);
    }
    })
    }
    })
    </script>
    </body>
    </html>
  • 相关阅读:
    Python-Image 基本的图像处理操作
    剪枝
    poj1182(食物链)续
    HLG2035广搜
    HLG2040二叉树遍历已知前中,求后
    先序,中序,后序,已知两者求第三者
    C++中new的解说
    僵尸进程
    HLG2062(make,heap问题)
    make_head,,,pop_head,,,push_head,,,sort_head..
  • 原文地址:https://www.cnblogs.com/chengyalin/p/10304669.html
Copyright © 2011-2022 走看看