echartsConfig.js 20.6 KB
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
//故障报告 每个项目的故障分析时间
var faultReport_guZhangFengxi = {
    title: {
        text: '故障分析',
        top: 12,
    },
    grid: {
        left: '0%',
        right: '0%',
        bottom: '7%',

        //  // 是否显示刻度标签
        containLabel: true,
    },
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'cross',
            crossStyle: {
                color: '#999',
            },
        },
    },
    toolbox: {},
    legend: {
        data: ['故障时間', '占比%'],
        x: 'right',
        top: 12,
    },
    xAxis: [
        {
            type: 'category',
            data: [],
            axisPointer: {
                type: 'shadow',
            },
            axisLabel: {
                interval: 0 // 强制显示所有标签
            }
        },
    ],
    yAxis: [
        {
            type: 'value',
            // name: "Precipitation",
            // max: 160,
            // min: 0,
            axisLabel: {
                formatter: '{value}(分)',
                fontSize: 10,
                show: true,
                interval: '-1',
            },

        },
        {
            type: 'value',
            // name: "Temperature",
            min: 0,
            max: 100,
            interval: 20,
            axisLabel: {
                formatter: '{value}%',
            },
        },
    ],
    series: [
        {
            name: '故障时間',
            type: 'bar',
            barWidth: 40,
            tooltip: {
                valueFormatter: function (value) {
                    return value + ' ml';
                },
            },
            itemStyle: {
                normal: {
                    color: '#EE6666',
                    barBorderRadius: 0,
                    label: {
                        show: true,
                        position: "top",
                        formatter: function (p) {
                            return p.value > 0 ? (p.value) : '';
                        }
                    }
                }
            },
            data: [], //57, 34, 71
        },
        {
            name: '占比%',
            type: 'line',
            yAxisIndex: 1,
            symbol: 'triangle',
            symbolSize: 10,
            tooltip: {
                valueFormatter: function (value) {
                    return value + ' °C';
                },
            },
            data: [], //10, 50, 80
            lineStyle: {
                color: '#5470C6',
                width: 6,
                type: 'dashed',
            },
            itemStyle: {
                borderWidth: 3,
                borderColor: '#EE6666',
                color: '#EE6666',
            },
        },
    ],
};

//故障重复次数 柱状图
var guzhangCishu = {
    title: {
        text: '故障重复次数',
        top: 0,
        left: 400
    },
    "tooltip": {
        "trigger": "axis",
        "axisPointer": {
            "type": "shadow",
            textStyle: {
                // color: "#fff"
            }

        },
    },
    "grid": {
        borderWidth: 0,
        top: 20,
        left: 50,
        right: 70,
        "bottom": 80,
        textStyle: {
            // color: "#fff"
        }
    },
    "legend": {
        // left: 'center',
        x: '86%',
        top: '8%',
        left: '83%',
        textStyle: {
            color: '#000000',
        },
        "data": ['故障次数', '占比%']
    },


    "calculable": true,
    "xAxis": [{
        "type": "category",

        "axisLine": {

        },
        "splitLine": {
            "show": false
        },
        "axisTick": {
            "show": false
        },
        "splitArea": {
            "show": false
        },
        axisLabel: {//**该项配置重点关注**
            interval: 0,
            fontSize: 12,
            formatter: function (value) {
                if (value.length > 10) {
                    var ret = "";//拼接加\n返回的类目项  
                    var maxLength = 8;//每项显示文字个数  
                    var valLength = value.length;//X轴类目项的文字个数  
                    var rowN = Math.ceil(valLength / maxLength); //类目项需要换行的行数  
                    if (rowN > 1)//如果类目项的文字大于5,  
                    {
                        for (var i = 0; i < rowN; i++) {
                            var temp = "";//每次截取的字符串  
                            var start = i * maxLength;//开始截取的位置  
                            var end = start + maxLength;//结束截取的位置  
                            //这里也可以加一个是否是最后一行的判断,但是不加也没有影响,那就不加吧  
                            temp = value.substring(start, end) + "\n";
                            ret += temp; //凭借最终的字符串  
                        }
                        return ret.slice(0, 13) + '...';
                    }
                    else {
                        return value;
                    }
                } else {
                    return value;
                }
            }
        },
        "data": [],
    }],
    "yAxis": [{
        "type": "value",
        "splitLine": {
            "show": false
        },
        "axisLine": {

        },
        "axisTick": {
            "show": false
        },

        "splitArea": {
            "show": false
        },

    }, {
        type: 'value',
        // name: "Temperature",
        min: 0,
        max: 100,
        interval: 20,
        axisLabel: {
            formatter: '{value}%',
        },
    }],
    "dataZoom": [{
        "show": true,
        type: 'slider',
        "height": 10,
        "xAxisIndex": [
            0
        ],
        start: 0, //数据窗口范围的起始百分比,表示0%
        end: 10, //数据窗口范围的结束百分比,表示30%


        handleIcon: 'path://M306.1,413c0,2.2-1.8,4-4,4h-59.8c-2.2,0-4-1.8-4-4V200.8c0-2.2,1.8-4,4-4h59.8c2.2,0,4,1.8,4,4V413z',

        handleStyle: {
            color: "#d3dee5",

        },
        textStyle: {
            color: "#000000"
        },



    }, {
        "type": "inside",
        "show": true,

    }],
    "series": [
        {
            "name": "故障次数",
            "type": "bar",
            "stack": "总量",
            barWidth: '23',
            "itemStyle": {
                "normal": {
                    color: '#EE6666',
                    "barBorderRadius": 0,
                    "label": {
                        "show": true,
                        "position": "top",
                        formatter: function (p) {
                            return p.value > 0 ? (p.value) : '';
                        }
                    }
                }
            },
            "data": []
        },

        {
            name: '占比%',
            type: 'line',
            yAxisIndex: 1,
            symbol: 'triangle',
            symbolSize: 10,
            tooltip: {
                valueFormatter: function (value) {
                    return value + ' °C';
                },
            },
            data: [], //10, 50, 80
            lineStyle: {
                color: '#5470C6',
                width: 6,
                type: 'dashed',
            },
            itemStyle: {
                borderWidth: 3,
                borderColor: '#5470C6',
                color: '#5470C6',
            },

        },
    ]
}

//故障月份对比
var faultStatistiOption = {
    title: {
        text: '故障月份对比',
        top: 0,
        left: 260
    },
    // color: ['rgb(194 53 49)', 'rgb(97 160 168)', 'rgb(47 69 84)'],
    tooltip: {
        trigger: 'axis',
        axisPointer: {
            type: 'cross',
            crossStyle: {
                color: '#999'
            }
        }
    },
    toolbox: {

    },
    legend: {
        data: [],
    },
    "grid": {
        borderWidth: 0,
        top: 20,
        left: 70,
        right: 0,
        "bottom": 90,
        textStyle: {
            // color: "#fff"
        }
    },
    "legend": {
        x: '86%',
        top: '8%',
        left: '80%',
        textStyle: {
            color: '#000000',
        },
    },

    xAxis: [
        {
            type: 'category',
            data: ['xxx'],
            "axisLabel": {
                fontSize: 14,
                interval: 0,
                formatter: function (value) {
                    if (value.length > 10) {
                        var ret = "";//拼接加\n返回的类目项  
                        var maxLength = 8;//每项显示文字个数  
                        var valLength = value.length;//X轴类目项的文字个数  
                        var rowN = Math.ceil(valLength / maxLength); //类目项需要换行的行数  
                        if (rowN > 1)//如果类目项的文字大于5,  
                        {
                            for (var i = 0; i < rowN; i++) {
                                var temp = "";//每次截取的字符串  
                                var start = i * maxLength;//开始截取的位置  
                                var end = start + maxLength;//结束截取的位置  
                                //这里也可以加一个是否是最后一行的判断,但是不加也没有影响,那就不加吧  
                                temp = value.substring(start, end) + "\n";
                                ret += temp; //凭借最终的字符串  
                            }
                            return ret.slice(0, 13) + '...';
                        }
                        else {
                            return value;
                        }
                    } else {
                        return value;
                    }
                }
            },
            axisPointer: {
                type: 'shadow',

            },
        },
    ],
    yAxis: [
        {
            type: 'value',
            name: '',
            // interval: 50,
            axisLabel: {
                formatter: '{value} 分',
            },
        },
        {},
    ],
    dataZoom: [
        {
            //数据区域缩放的配置项 也就是拖拽滚动条的组件
            show: true,
            type: 'slider',

            height: 15, //拖拽组件的高度
            xAxisIndex: [
                //拖拽组件关联的横轴索引,这里设置为 [0],表示关联第一个横轴。
                0,
            ],

            start: 0, //数据窗口范围的起始百分比,表示0%
            end: 35, //数据窗口范围的结束百分比,表示30%

            handleIcon: 'path://M306.1,413c0,2.2-1.8,4-4,4h-59.8c-2.2,0-4-1.8-4-4V200.8c0-2.2,1.8-4,4-4h59.8c2.2,0,4,1.8,4,4V413z',
            handleStyle: {
                //手柄两端的颜色
                color: '#d3dee5',
            },
            textStyle: {
                // 拖拽缩放组件文本样式的配置项。
                color: '#000000', //颜色
            },
        },
    ],
    series: [
        {
            name: '',
            type: 'bar',
            itemStyle: {
                color: '#C23531'
            },
            barWidth: 25,
            tooltip: {
                valueFormatter: function (value) {
                    return value + ' ml'
                },
            },
            data: [1],
        },
        {
            name: '',
            type: 'bar',
            itemStyle: {
                color: '#61A0A8'
            },
            barWidth: 25,
            tooltip: {
                valueFormatter: function (value) {
                    return value + ' ml'
                },
            },
            data: [8],
        },
        {
            name: '',
            type: 'bar',
            itemStyle: {
                color: '#2F4554'
            },
            barWidth: 25,
            tooltip: {
                valueFormatter: function (value) {
                    return value + '  ml'
                },
            },
            data: [7],
        },
    ],
}
// 故障次数近4周对比
var faultOption = {
    title: {
        text: '故障重复次数',
        top: 0,
        left: 400
    },
    "grid": {
        borderWidth: 0,
        top: 30,
        left: 70,
        right: 70,
        "bottom": 25,
        textStyle: {
            // color: "#fff"
        }
    },
    "legend": {
        top: '20%',
        left: '0%',
        right: '0',
        bottom: '9%',
    },
    xAxis: {
        type: 'category',
        "axisLabel": {
            fontSize: 15,
            interval: 0,
        },
        data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
    },
    yAxis: [
        {
            type: 'value',
            axisLabel: {
                formatter: '{value} 次数',
            },
        },
        {
            type: 'value',
            name: '分钟',
            nameTextStyle: {
                color: '#ffff',
            },
            splitLine: {
                show: false,
            },
            axisTick: {
                show: true,
            },
            axisLine: {
                show: true,
            },
            axisLabel: {
                formatter: '{value} 分钟',
                color: '#000',
                // textStyle: {
                //     fontSize: 13,
                // },
            },
        },
    ],
    series: [
        {
            itemStyle: {
                normal: {
                    color: '#008c8c',
                    label: {
                        show: true, //开启显示数值
                        formatter: function (params) {
                            //标签内容
                            return params.value + "次";
                        },
                        position: 'top', //数值在上方显示
                        textStyle: {
                            //数值样式
                            color: '#008c8c', //字体颜色
                            fontSize: 15, //字体大小
                        },
                    },
                },
            },
            barWidth: 35,
            barGap: '80%',
            data: [],
            type: 'bar'
        },
        {

            itemStyle: {
                normal: {
                    color: '#2F4554',
                    label: {
                        show: true, //开启显示数值
                        formatter: function (params) {
                            //标签内容
                            return params.value + "分钟";
                        },
                        position: 'top', //数值在上方显示
                        textStyle: {
                            //数值样式
                            color: '#2F4554', //字体颜色
                            fontSize: 15, //字体大小
                        },
                    },
                },
            },
            barWidth: 35,
            barGap: '80%',
            data: [],
            type: 'bar',
            yAxisIndex: 1, //使用的 y 轴的 index,在单个图表实例中存在多个 y轴的时候有用
        }
    ]
};

// 故障每天小时次数对比
var faultStatistiDayOption = {
    title: {
        text: '故障每天小时次数对比',
        top: 0,
        left: 400
    },
    "grid": {
        borderWidth: 0,
        top: 40,
        left: 70,
        right: 70,
        "bottom": 25,
        textStyle: {
            // color: "#fff"
        }
    },
    "legend": {
        top: '20%',
        left: '20%',
        right: '50%',
        bottom: '9%',
    },
    xAxis: {
        type: 'category',
        "axisLabel": {
            fontSize: 15,
            interval: 0,
        },
        data: []
    },
    yAxis: [
        {
            type: 'value',
            interval: 1,
            axisLabel: {
                formatter: '{value} 次数',
            },
        }
    ],
    series: [
        {
            barWidth: 35,
            data: [],
            type: 'bar',
            itemStyle: {
                normal: {
                    color: function (params) {
                        var index = params.dataIndex;
                        return index % 2 === 0 ? '#008c8c' : '#2F4554';
                    },
                    label: {
                        show: true, //开启显示数值
                        formatter: function (params) {
                            //标签内容
                            return params.value + "次";
                        },
                        position: 'top', //数值在上方显示
                        textStyle: {
                            //数值样式
                            color: '#008c8c', //字体颜色
                            fontSize: 15, //字体大小
                        },
                    },
                }
            }

        }
    ]
};

//妥善率
var tuosanRate = {
    title: {
        //left、top 控制标题的位置 相对于此图盒子
        left: 1,
        textStyle: {
            color: '#73c0de',
            fontSize: 12,
            fontStyle: 'oblique',

        },
    },
    // tooltip 鼠标移上去时提示框 组件
    tooltip: {
        show: true,//显示/隐藏
        trigger: 'axis',
        // 鼠标放上去显示百分比 不要百分比就去掉
        formatter: function (params) {
            var relVal = params[0].name//x轴对应的名字
            for (var i = 0, l = params.length; i < l; i++) {    //legend对应的名字
                relVal += '<br/>' + params[i].marker + params[i].seriesName + ': ' + params[i].value + '%'
            }
            return relVal
        },

    },
    // 设置图表的图例
    legend: {
        // show 是否展示图例,也就是每个线的标识
        show: true,
        right: 2, //控制图例位置
        top: 10,
        // orient: 'vertical', //图例的朝向 上下排列 多用于饼状图 默认横向
        //每个图例圆圈的大小
        itemHeight: 8,
        itemWidth: 12,
        itemGap: 8, //图例之间的间距
        textStyle: {  //图例文字设置
            fontSize: 10,
            fontWeight: 'bolder',
            color: '#5c7bd9',
        }
    },
    // grid 设置图形在div里所占的比例大小
    grid: {
        left: '0.4%',
        right: '0.4%',
        bottom: '2%',
        //  // 是否显示刻度标签
        containLabel: true
    },

    //xAxis 设置X轴上显示的数据、 x轴的线、刻度、颜色、箭头等配置
    xAxis: {
        type: 'category',
        nameTextStyle: {

            fontWeight: 'bold',
            fontSize: 14 //  字体大小
        },

        boundaryGap: true, //是否贴于轴线
        splitLine: {
            //网格线 默认不显示
            show: false
        },
        // 轴标签的文字样式
        axisLabel: {
            textStyle: {    // 设置文字样式
            },
            show: true,
            interval: 0,//使x轴文字显示全
        },
        // 线的样式
        axisLine: {
            lineStyle: {
                width: 1, // x轴线的宽度
            },

        },
        // 设置线的刻度
        axisTick: {
            show: false, //是否展示刻度线
            inside: true, //刻度线朝内还是朝外
            // 坐标轴的刻度
            length: 8, // 长度
            lineStyle: {
                width: 1,
                type: 'solid',
            },
        },

        // data 显示的标题文字
        data: []

    },
    //  yAxis 设置Y轴上显示的数据, 如果没有设置会根据数据自动填充 一般不设置
    yAxis: {
        //y轴大小值
        min: 0,

        max: 100,
        type: 'value',

        splitLine: {
            //网格线 默认不显示
            show: true
        },

        nameTextStyle: {
            //  单位样式

            fontWeight: 'bold',
            fontSize: 14 //  字体大小
        },
        // 轴标签的对应的文字样式
        axisLabel: {
            // 此处是给y轴加上% 显示百分比,根据需求来选择受否要%
            formatter: '{value} %',
        },
        // 线的样式
        axisLine: {
            show: true,
            lineStyle: {

                width: 1, // x轴线的宽度
            },
        },

        axisTick: {
            // 坐标轴的刻度
            show: true, // 是否显示
            inside: true, // 是否朝内
            length: 8, // 长度
            lineStyle: {

                width: 1,
                type: 'solid',
            },
        },

    },
    // series 设置图表的数据
    series: []
};

//需要用到的页面 接收 import {xxOption} from '../static/echartsConfig'