自动化立体仓库 - WCS系统
whycq
2023-08-30 cfd50bf5368e74d4b4710cd8bdc44b5baee24cc5
# 显示屏
1个文件已修改
76 ■■■■■ 已修改文件
src/main/webapp/views/monitor/index.html 76 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/monitor/index.html
@@ -231,19 +231,87 @@
    var option;
    option = {
        legend: {
            data: ['上午出库', '上午入库', '下午出库', '下午入库'],
            textStyle:{color:'#FFF'},
            lineStyle: {
                width: 10,
            },
        },
        grid: { // 图表距离边框的距离,可用百分比和数字(px)配置
            top: '20%',
            left: '3%',
            right: '10%',
            bottom: '5%',
            containLabel: true
        },
        xAxis: {
            type: 'category',
            axisLine: {
                lineStyle: {
                    color: '#FFF'
                }
            },
            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
        },
        yAxis: {
            type: 'value'
            type: 'value',
            axisLine: {
                lineStyle: {
                    color: '#FFF'
                }
            },
        },
        series: [
            {
                data: [820, 932, 901, 934, 1290, 1330, 1320],
                name: '上午出库',
                type: 'line',
                smooth: true
            }
                lineStyle: {
                    normal: {
                        width: 4
                    }
                },
                smooth: true,
                stack: 'Total',
                data: [10, 10, 10, 10, 10, 10, 10]
            },
            {
                name: '上午入库',
                type: 'line',
                lineStyle: {
                    normal: {
                        width: 4
                    }
                },
                smooth: true,
                stack: 'Total',
                data: [10, 10, 10, 10, 10, 10, 10]
            },
            {
                name: '下午出库',
                type: 'line',
                lineStyle: {
                    normal: {
                        width: 4
                    }
                },
                smooth: true,
                stack: 'Total',
                data: [10, 10, 10, 10, 10, 10, 10]
            },
            {
                name: '下午入库',
                type: 'line',
                lineStyle: {
                    normal: {
                        width: 4
                    }
                },
                smooth: true,
                stack: 'Total',
                data: [10, 1, 10, 10, 10, 10, 10]
            },
        ]
    };