• ssm实现折线统计图


    ​ 方法1:单张数据表中的数据图表生成

    图表统计,查看部门人数统计这里实现的时单张表中的数据实现部门人数折线统计图展示。
    在这里插入图片描述

    <script type="text/javascript">
        // 利用AjAx来获取后台传入的数据(@Responsebody注解传入的)
        var deptName=[];
        var totalCount=[];
        var maleCount=[];
        var femaleCount=[];
        $.ajax({
            type: "get",
            async: false, //是否异步
            url:ctx+ "/admin/sortHit",
            contentType: "application/json;charset=UTF-8",
            dataType: "json", //跨域json请求一定是json
            success: function (response) {
                for (var index = 0; index < response.length; index += 1) {
                    deptName.push(response[index].deptName);
                    totalCount.push(response[index].totalCount);
                    maleCount.push(response[index].maleCount);
                    femaleCount.push(response[index].femaleCount);
                }
            },
            error: function (response) {
                console.log("请求失败")
            }
        });
        //Echarts展示数据
        $(function () {
            {
                // 基于准备好的dom,初始化echarts图表
                var myChart = echarts.init(document.getElementById('main'));
    
                option = {
                    title: {
                        text: '部门人数统计图'
                    },
                    tooltip: {
                        trigger: 'axis',
                        axisPointer: {
                            type: 'line',
                        }
                    },
                    toolbox: {
                        show: true,
                        feature: {
                            saveAsImage: {}
                        }
                    },
                    legend: { // 添加线条标识说明
                        data: ['总人数', '男性人数', '女性人数'],
                        top: 30
                    },
                    grid: {
                        left: '3%',
                        right: '4%',
                        bottom: '3%',
                        containLabel: true
                    },
                    xAxis: [
                        {
                            type: 'category',
                            // boundaryGap: false,
                            data: deptName,
                            axisLabel: {
                                interval: 0,
                                textStyle: {
                                    color: '#666'
                                }
                            },
                            axisLine: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            },
                            axisTick: {
                                show: false
                            }
                        }
                    ],
                    yAxis: [
                        {
                            type: 'value',
                            minInterval: 1,
                            axisLine: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            },
                            axisTick: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            }
                        }
                    ],
                    series: [
                        {
                            name: '总人数',
                            type: 'line',
                            itemStyle: {
                                color: '#a9dffb'
                            },
                            data: totalCount
                        },
                        {
                            name: '男性人数',
                            type: 'line',
                            itemStyle: {
                                color: '#5fb7f9'
                            },
                            data: maleCount
                        },
                        {
                            name: '女性人数',
                            type: 'line',
                            itemStyle: {
                                color: '#289df5'
                            },
                            data: femaleCount
                        }
                    ]
                };
    
                // 为echarts对象加载数据
                myChart.setOption(option);
                // echarts 窗口缩放自适应
                window.onresize = function () {
                    echartsRecords.resize();
                }
            }
        })
    </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
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130

    这里是后端方法,这里只有mybatis和controller层的代码其他代码可自行生成。

    // 后端SSM方法
    @RequestMapping(value = "/admin/sortHit", method = RequestMethod.GET)
    @ResponseBody
    public List<Department> getDepartmentStatistics() {
        return departmentService.getDepartmentStatistics();
    }
    
    // Department类
    public class Department {
        private String deptName;
        private int totalCount;
        private int maleCount;
        private int femaleCount;
        
        // getters and setters
    }
    
    // DepartmentMapper.xml
    <select id="getDepartmentStatistics" resultType="Department">
        SELECT deptName, COUNT(*) AS totalCount,
               SUM(CASE WHEN gender = 'male' THEN 1 ELSE 0 END) AS maleCount,
               SUM(CASE WHEN gender = 'female' THEN 1 ELSE 0 END) AS femaleCount
        FROM department
        GROUP BY deptName
    </select>
    
    • 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

    方法二:多张图表生成部门人数统计图,在图表中显示部门总人数,男性人数,女性人数。
    在这里插入图片描述
    前端页面代码

    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link rel="stylesheet" href="${ctx }/css/font_eolqem241z66flxr.css"
              media="all" />
        <link rel="stylesheet" href="${ctx }/css/list.css" media="all" />
        <link rel="stylesheet" href="${ctx }/layui/css/layui.css" media="all" />
        <link rel="stylesheet" href="${ctx }/css/font-awesome-4.7.0/css/font-awesome.min.css" media="all">
        <link rel="stylesheet" href="${ctx }/css/public.css" media="all">
        <title>部门人员统计图</title>
        <script>
            var ctx = "${ctx}";
        </script>
    </head>
    <body>
    <div class="layui-container">
        <div class="layui-card">
            <div class="layui-card-header"><i class="fa fa-line-chart icon"></i>报表统计</div>
            <div class="layui-card-body">
                <div id="main" style="height:500px;width: 1100px; margin-left: 30px ;margin: 20px auto;"></div>
            </div>
        </div>
    </div>
    </body>
    <!-- 引入layui和echarts -->
    <script type="text/javascript" src="${ctx }/layui/layui.js"></script>
    <script type="text/javascript" src="${ctx }/js/jquery-1.9.1.min.js"></script>
    <script type="text/javascript" src="${ctx }/js/Echarts/echarts.min.js"></script>
    <script type="text/javascript">
        // 利用AjAx来获取后台传入的数据(@Responsebody注解传入的)
        var deptName=[];
        var totalCount=[];
        var maleCount=[];
        var femaleCount=[];
        $.ajax({
            type: "get",
            async: false, //是否异步
            url:ctx+ "/admin/sortHit",
            contentType: "application/json;charset=UTF-8",
            dataType: "json", //跨域json请求一定是json
            success: function (response) {
                for (var index = 0; index < response.length; index += 1) {
                    deptName.push(response[index].deptName);
                    totalCount.push(response[index].totalCount);
                    maleCount.push(response[index].maleCount);
                    femaleCount.push(response[index].femaleCount);
                }
            },
            error: function (response) {
                console.log("请求失败")
            }
        });
        //Echarts展示数据
        $(function () {
            {
                // 基于准备好的dom,初始化echarts图表
                var myChart = echarts.init(document.getElementById('main'));
    
                option = {
                    title: {
                        text: '部门人数统计图'
                    },
                    tooltip: {
                        trigger: 'axis',
                        axisPointer: {
                            type: 'line',
                        }
                    },
                    toolbox: {
                        show: true,
                        feature: {
                            saveAsImage: {}
                        }
                    },
                    legend: { // 添加线条标识说明
                        data: ['部门总人数', '男性人数', '女性人数'],
                        top: 30
                    },
                    grid: {
                        left: '3%',
                        right: '4%',
                        bottom: '3%',
                        containLabel: true
                    },
                    xAxis: [
                        {
                            type: 'category',
                            // boundaryGap: false,
                            data: deptName,
                            axisLabel: {
                                interval: 0,
                                textStyle: {
                                    color: '#666'
                                }
                            },
                            axisLine: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            },
                            axisTick: {
                                show: false
                            }
                        }
                    ],
                    yAxis: [
                        {
                            type: 'value',
                            minInterval: 1,
                            axisLine: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            },
                            axisTick: {
                                lineStyle: {
                                    color: '#ccc'
                                }
                            }
                        }
                    ],
                    series: [
                        {
                            name: '部门总人数',
                            type: 'line',
                            itemStyle: {
                                color: '#38e913'
                            },
                            data: totalCount
                        },
                        {
                            name: '男性人数',
                            type: 'line',
                            itemStyle: {
                                color: '#0c1c61'
                            },
                            data: maleCount
                        },
                        {
                            name: '女性人数',
                            type: 'line',
                            itemStyle: {
                                color: '#8f0d21'
                            },
                            data: femaleCount
                        }
                    ]
                };
    
                // 为echarts对象加载数据
                myChart.setOption(option);
                // echarts 窗口缩放自适应
                window.onresize = function () {
                    echartsRecords.resize();
                }
            }
        })
    </script>
    </html>
    
    • 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
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159

    后端代码

    controller层
     @RequestMapping("/sortHit")
        @ResponseBody
        public List<Department> countByDept() {
            return adminService.countByDept();
        }
        service层
        List<Department> countByDept();
         @Override
        public List<Department> countByDept() {
            return adminDao.countByDept();
        }
        dao层
          List<Department> countByDept();
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    mapper文件

      <select id="countByDept" resultType="com.nucleic.acid.manager.entity.DeptEchart">
            /*方法1:查询部门人数并将总人数里面的男女性别分别显示*/
            SELECT d.deptName, COUNT(*) AS totalCount,
           SUM(CASE WHEN a.sex = '1' THEN 1 ELSE 0 END) AS maleCount,
           SUM(CASE WHEN a.sex = '0' THEN 1 ELSE 0 END) AS femaleCount
            FROM sys_admin a JOIN tb_department d ON a.dept_name = d.deptName
            GROUP BY deptName
           /* -- 方式一根据部门名称和管理员所属部门名称进行统计人数
            SELECT d.deptName, COUNT(*) count
            FROM sys_admin a JOIN tb_department d ON a.dept_name = d.deptName
            GROUP BY d.deptName*/
          /* 方式二根据部门id进行生成统计图
            SELECT d.deptName, COUNT(*) count
               FROM sys_admin a JOIN tb_department d ON a.department_id = d.de_id
             GROUP BY d.deptName*/
        </select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    java类

      private Integer id;
        private String deptName;
        private int count;
        private int totalCount;
        private int maleCount;
        private int femaleCount;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
  • 相关阅读:
    使用百度EasyDL实现施工人员安全装备检测
    【数据算法与结构】栈与队列篇
    CSS之字体和层叠样式表引入
    谷粒商城 (五) --------- 人人开源搭建后台系统
    SQL[游标+动态SQL+表函数]返回指定表名的某行的所有列合并后的值,主要提供给数据库表的更新记录事件
    【Mysql 错误定位】语法错误
    vite项目、vue-cli项目环境配置
    6种最常用的3D点云语义分割AI模型对比
    Java虚拟机相关工具
    递推递归与排列组合
  • 原文地址:https://blog.csdn.net/m0_46590717/article/details/132791010