zoukankan      html  css  js  c++  java
  • Echarts环形图、折线图通过ajax动态获取数据

    环形图

     1 (function(){
     2     var myChart = echarts.init(document.getElementById("index-pie-1"));
     3      option = {
     4         tooltip: {
     5             trigger: 'item',
     6             formatter: '{a} <br/>{b}: {c} ({d}%)'
     7         },
     8         legend: {
     9             orient: 'vertical',
    10             left: 0,
    11             data: []
    12         },
    13         series: [
    14             {
    15                 name: '用户来源',
    16                 type: 'pie',
    17                 left:90,
    18                 radius: ['50%', '70%'],
    19                 avoidLabelOverlap: false,
    20                 label: {
    21                     show: false,
    22                     position: 'center'
    23                 },
    24                 emphasis: {
    25                     label: {
    26                         show: true,
    27                         fontSize: 20,
    28                         fontWeight: 'bold'
    29                     }
    30                     },
    31                 labelLine: {
    32                     show: false
    33                 },
    34                 data: []
    35             }
    36             ]
    37     };
    38     myChart.showLoading();
    39     $.ajax({
    40         type: 'get',
    41         url: 'json/chart/column/getData',//请求数据的地址
    42         dataType: "json",        //返回数据形式为json
    43         success: function (gameData) {
    44             //请求成功时执行该函数内容,result即为服务器返回的json对象
    45             $.each(gameData,function (key,item) {
    46                 var newArr = {};
    47                 newArr.value = item.value;
    48                 newArr.name = item.name;
    49                 option.legend.data.push(item.name);
    50                 option.series[0].data.push(newArr);
    51             });
    52             myChart.hideLoading();
    53             myChart.setOption(option);
    54         }
    55     });
    56 })();

    折线图

    /*(function(){
        var myChart = echarts.init(document.getElementById("widget-chart-box-1"));
        var myChart2 = echarts.init(document.getElementById("widget-chart-box-2"));
    
        var labelTop = {
    
            normal : {
                label : {
                    show : true,
                    position : 'center',
                    formatter : '{b}',
                    textStyle: {
                        baseline : 'bottom'
                    }
                },
                labelLine : {
                    show : false
                }
    
            }
        };
        var labelFromatter = {
            normal : {
                label : {
                    formatter : function (params){
                        return 100 - params.value + '%'
                    },
                    textStyle: {
                        baseline : 'center'
                    }
                }
            },
        }
        var labelBottom = {
            normal : {
                color: '#ccc',
                label : {
                    show : true,
                    position : 'center'
                },
                labelLine : {
                    show : false
                }
            },
            emphasis: {
                color: '#ccc'
            }
        };
        var radius = [40, 35];
        option = {
    
    
    
            legend: {
                x : 'center',
                y : 'center',
    
            },
    
            grid: {
                x:0,
                y:0,
                x2:0,
                y2:0
            },
    
            toolbox: {
                show : true,
                feature : {
                    magicType : {
                        show: true,
                        type: ['pie', 'funnel'],
                        option: {
                            funnel: {
                                 '20%',
                                height: '30%',
                                itemStyle : {
                                    normal : {
                                        label : {
                                            formatter : function (params){
                                                return 'other
    ' + params.value + '%
    '
                                            },
                                            textStyle: {
                                                baseline : 'middle'
                                            }
                                        }
                                    },
                                }
                            }
                        }
                    }
    
                }
            },
            series : [
                {
                    type : 'pie',
    
                    radius : radius,
                    x: '0%', // for funnel
                    itemStyle : labelFromatter,
                    data : [
                        {name:'111', value:46, itemStyle : labelBottom},
                        {name:'', value:54,itemStyle : labelTop}
                    ]
                }
    
            ],
            animation :false
        };
    
    
        myChart.setOption(option);
        myChart2.setOption(option);
    })();*/
    /*折线图*/
    (function(){
        var myChart = echarts.init(document.getElementById("index-line-1"));
    
        option1 = {
            tooltip: {
                trigger: 'axis'
            },
            legend: {
                data: []
            },
            grid: {
                left: '3%',
                right: '4%',
                bottom: '3%',
                containLabel: true
            },
            toolbox: {
                feature: {
                    saveAsImage: {}
                }
            },
            xAxis: {
                type: 'category',
                boundaryGap: false,
                data: []
            },
            yAxis: {
                type: 'value'
            },
            series: []
        };
        myChart.showLoading();
        $.ajax({
                    type: 'get',
                    url: 'json/chart/column/getData',//请求数据的地址
                    dataType: "json",        //返回数据形式为json
                    success: function (gameData) {
                        //请求成功时执行该函数内容,result即为服务器返回的json对象
                        var x = gameData.week;
                        var game_data = gameData.weekdata;
                        $.each(x,function (key,item) {
                            option1.xAxis.data.push(item.date_start);
                        });
                        $.each(game_data,function (key,item) {
                            option1.legend.data.push(item.name);
                            var newArr = {};
                            newArr.name = item.name;
                            newArr.type = 'line';
                            newArr.stack = '总量';
                            newArr.data = item.data;
                            option1.series.push(newArr);
                        });
    
                        myChart.hideLoading();
                        myChart.setOption(option1);
                     }
             });
    })();

    其实方法很简单。有问题可以私信博主,q-760106033    v-Autumn123O  (v最后一个字母哦大写,不是零0)

  • 相关阅读:
    武汉大学2020年数学分析考研试题
    南开大学2020年数学分析考研试题
    南开大学2020年高等代数考研试题
    华中科技大学2020年数学分析考研试题
    华南理工大学2020年数学分析考研试题
    华东师范大学2020年数学分析考研试题
    华东师范大学2020年高等代数考研试题
    哈尔滨工业大学2020年数学分析考研试题
    大连理工大学2020年高等代数考研试题
    大连理工大学2020年数学分析考研试题
  • 原文地址:https://www.cnblogs.com/T8888/p/12586543.html
Copyright © 2011-2022 走看看