PHP小丑 发表于 2021-12-17 18:30:36

#私藏项目实操分享# Echarts实操纪实,需要实现一个日程表,以及常用属性

一、首先依赖的文件echarts.js直接放出来
1、直接下载
2、​​官网定制https://echarts.apache.org/zh/index.html​​

全勾上点下面的下载就好了
二、使用echarts.js实现一个日程表
效果:

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <script type="text/javascript" src="echarts.js"></script>
    <title></title>
</head>

<body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style="width: 1720px;height:910px;"></div>
    <script type="text/javascript">
      // 基于准备好的dom,初始化echarts实例
      var myChart = echarts.init(document.getElementById('main'));

      var data = [
            //['日期', '是否有重要事件(80)','重要事件简介','节假日','是否是休息日或加班日','重要事件详细内容']
            ['2019-5-27', '', '', '', '', ''],
            ['2019-5-28', '', '', '', '', ''],
            ['2019-5-29', '', '', '', '', ''],
            ['2019-5-30', '', '', '', '', ''],
            ['2019-5-31', '', '', '', '', ''],
            ['2019-6-1', '80', '重要事件简介1', '', '', '重要事件详细内容1'],
            ['2019-6-2', '', '', '', '', ''],
            ['2019-6-3', '', '', '', '', ''],
            ['2019-6-4', '', '', '', '', ''],
            ['2019-6-5', '', '', '', '', ''],
            ['2019-6-6', '', '', '', '', ''],
            ['2019-6-7', '', '', '端午节', '休', ''],
            ['2019-6-8', '80', '重要事件简介2', '', '休', '重要事件详细内容2'],
            ['2019-6-9', '', '', '', '休', ''],
            ['2019-6-10', '', '', '', '', ''],
            ['2019-6-11', '', '', '', '', ''],
            ['2019-6-12', '80', '重要事件简介3', '', '', '重要事件详细内容3'],
            ['2019-6-13', '', '', '', '', ''],
            ['2019-6-14', '', '', '', '', ''],
            ['2019-6-15', '', '', '', '', ''],
            ['2019-6-16', '', '', '', '', ''],
            ['2019-6-17', '', '', '', '', ''],
            ['2019-6-18', '', '', '', '', ''],
            ['2019-6-19', '', '', '', '', ''],
            ['2019-6-20', '', '', '', '', ''],
            ['2019-6-21', '80', '重要事件简介4', '', '', '重要事件详细内容4'],
            ['2019-6-22', '', '', '', '', ''],
            ['2019-6-23', '', '', '', '', ''],
            ['2019-6-24', '', '', '', '', ''],
            ['2019-6-25', '', '', '', '', ''],
            ['2019-6-26', '', '', '', '', ''],
            ['2019-6-27', '', '', '', '', ''],
            ['2019-6-28', '', '', '', '', ''],
            ['2019-6-29', '', '', '', '', ''],
            ['2019-6-30', '', '', '', '', '']
      ];

      var jjrdata = [];
      var cdata = [];
      var data1 = [];
      var event = [];
      var heatmapData = []; //热力图,用来标记有重要事件的
      for (var i = 0; i < data.length; i++) {
            heatmapData.push([
                data,
                Math.random() * 10
            ]);
            event.push(, data]);
            data1.push(, data]);
            jjrdata.push(, '', data, data, data]);
            cdata.push(, 1, data, data, data]);
      }

      var option = {
            tooltip: {
                trigger: 'item',
                position: [-2, -8],

                formatter: function(params) {
                  for (var i = 0; i < event.length; i++) {
                        if (event == params.data) {
                            if (event != "") {
                              return event;
                            }
                        }
                  }
                }
            },
            visualMap: {
                show: false,
                min: 0,
                max: 10,
                calculable: true,
                seriesIndex: ,
                orient: 'horizontal',
                left: 'center',
                bottom: 20,
                inRange: {
                  color: ['#e0ffff', '#006edd'],
                  opacity: 0.1
                },
                controller: {
                  inRange: {
                        opacity: 0.2
                  }
                }
            },

            calendar: [{
                left: 0,
                top: 23,
                range: , data1],
                orient: 'vertical',
                cellSize: 'auto',
                splitLine: {
                  // show: false,
                  lineStyle: {
                        color: '#294c38',
                        // width: 5,
                        // type: 'solid'
                  }
                },
                yearLabel: {
                  margin: 60,
                  show: true,
                  color: '#000000'
                },
                monthLabel: {
                  show: true,
                  firstDay: 1,
                  nameMap: 'cn',
                  margin: 30,
                  color: '#000000'
                },
                dayLabel: {
                  color: '#4cc79b',
                  margin: 10,
                  firstDay: 3,
                  nameMap: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
                },
                itemStyle: {
                  color: '#999999',
                  borderWidth: 3,
                  opacity: 0.5
                }

            }],
            series: [{
                name: '节假日',
                type: 'scatter',
                coordinateSystem: 'calendar',
                symbolSize: 1,
                label: {
                  normal: {
                        show: true,
                        formatter: function(params) {
                            return '\n\n' + (params.value || '');
                        },
                        offset: ,
                        textStyle: {
                            fontSize: 30,
                            fontWeight: 700,
                            color: '#ee221a',
                            textBorderColor: '#eee'
                        }
                  }
                },
                data: cdata
            }, {
                name: '长假',
                type: 'scatter',
                coordinateSystem: 'calendar',
                symbolSize: 1,
                symbol: 'rect',
                label: {
                  normal: {
                        show: true,
                        formatter: function(params) {
                            if (params.value == '休') {
                              return "{a|休}";
                            }
                        },
                        offset: [-10, -12],
                        rich: {
                            a: {
                              fontSize: 30,
                              fontWeight: 800,
                              color: '#e00',
                              textBorderColor: '#eee'
                            }
                        }
                  }
                },
                data: jjrdata
            }, {
                name: '周末上班',
                type: 'scatter',
                coordinateSystem: 'calendar',
                symbolSize: 1,
                symbol: 'rect',
                label: {
                  normal: {
                        show: true,
                        formatter: function(params) {
                            if (params.value == '班') {
                              return "{a|班}";
                            }
                        },
                        offset: [-10, -15],
                        rich: {
                            a: {
                              fontSize: 30,
                              fontWeight: 800,
                              color: '#11264f',
                              textBorderColor: '#eee'
                            }
                        }
                  }
                },
                data: jjrdata
            }, {
                name: '事件',
                type: 'scatter',
                coordinateSystem: 'calendar',
                symbolSize: 1,
                label: {
                  normal: {
                        show: true,
                        formatter: function(params) {
                            return params.value;
                        },
                        offset: ,
                        textStyle: {
                            fontSize: 30,
                            color: '#f4e925'

                        }
                  }
                },
                data: cdata
            }, {
                name: '公立以及标记事件',
                type: 'effectScatter',
                coordinateSystem: 'calendar',
                data: data1,
                symbol: 'path://m380.9075,231.05301l12.60495,0l3.89503,-12.22293l3.89503,12.22293l12.60495,0l-10.1976,7.5541l3.89523,12.22293l-10.19761,-7.55431l-10.19761,7.55431l3.89523,-12.22293l-10.19761,-7.5541z',
                symbolSize: function(val) {
                  val = val / 5;
                  val = val < 5 ? 0.1 : Math.min(val, 30);
                  return val;
                },
                symbolOffset: ,
                itemStyle: {
                  normal: {
                        color: '#ff030a'
                  }
                },
                label: {
                  show: true,
                  formatter: function(params) {
                        return params.value.split("-")
                  },
                  offset: ,
                  color: '#4cc79b'
                }
            }, {
                name: '提示',
                type: 'heatmap',
                coordinateSystem: 'calendar',
                data: heatmapData
            }]
      };

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

</html>
三、常用属性

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <script type="text/javascript" src="echarts.js"></script>
    <title></title>
</head>

<body>
    <!-- 为ECharts准备一个具备大小(宽高)的Dom -->
    <div id="main" style="width: 1720px;height:910px;"></div>
    <script>
      // 基于准备好的dom,初始化ECharts实例
      var myChart = echarts.init(document.getElementById('main'));
      // 指定图表的配置项和数据
      var option = {
            tooltip: {
                show: true, //默认显示
                showContent: true, //是否显示提示框浮层
                trigger: 'item', //触发类型,默认数据项触发
                triggerOn: 'click', //提示触发条件,mousemove鼠标移至触发,还有click点击触发
                alwaysShowContent: false, //默认离开提示框区域隐藏,true为一直显示
                showDelay: 0, //浮层显示的延迟,单位为 ms,默认没有延迟,也不建议设置。在 triggerOn 为 'mousemove' 时有效。
                hideDelay: 200, //浮层隐藏的延迟,单位为 ms,在 alwaysShowContent 为 true 的时候无效。
                enterable: false, //鼠标是否可进入提示框浮层中,默认为false,如需详情内交互,如添加链接,按钮,可设置为 true。
                position: 'right', //提示框浮层的位置,默认不设置时位置会跟随鼠标的位置。只在 trigger 为'item'的时候有效。
                confine: false, //是否将 tooltip 框限制在图表的区域内。外层的 dom 被设置为 'overflow: hidden',或者移动端窄屏,导致 tooltip 超出外界被截断时,此配置比较有用。
                transitionDuration: 0.4, //提示框浮层的移动动画过渡时间,单位是 s,设置为 0 的时候会紧跟着鼠标移动。
                formatter: function(params, ticket, callback) {
                  //判断数据,提供相应的url。
                  var path = "";
                  var node = params.data; //当前选中节点数据
                  var category = params.data.category; //选中节点图例0负载 1中间件 2端口号 3数据库 4用户名
                  if (category == 2) { //为jvm 虚拟机各类参数的路径
                        path = "${ctx}/weblogic.do?host=" + node.host + "&port=" +
                            node.port + "&username=" + node.username +
                            "&pwd=" + node.pwd; //准备访问路径
                  } else if (category == 4) { //为jdbc 数据库的路径
                        path = "${ctx}/oracle.do?host=" + node.host + "&port=" +
                            node.port + "&username=" + node.username +
                            "&pwd=" + node.pwd + "&instance=" +
                            node.instance; //准备访问路径
                  }

                  console.log(params);
                  $.ajax({
                        async: true, //设置异、同步加载
                        cache: false, //false就不会从浏览器缓存中加载请求信息了
                        type: 'post',
                        dataType: "json",
                        url: path, //请求的action路径
                        success: function(data) { //请求成功后处理函数。
                            //加工返回后的数据
                            debugger;
                            if (category == 2) { //当选择端口号时
                              var res = 'jvm最大内存值:' + data.memoryMaxSize + '<br/>';
                              res += 'jvm空闲内存值:' + data.memoryFreeSize + '<br/>';
                              res += 'jvm内存使用率:' + data.memoryPer + '<br/>';
                              res += '空闲线程:' + data.ideThread + '<br/>';
                              res += '总线程:' + data.totalThread + '<br/>';
                              res += '每秒处理的线程数比率:' + data.throuhput + '<br/>';
                              callback(ticket, res);
                            } else if (category == 4) { //当选择用户名时
                              var res = '当前链接数:' + data.processCount + '<br/>';
                              res += '最大链接数:' + data.maxProcessCount + '<br/>';
                              callback(ticket, res);
                            }

                        },
                        error: function() { //请求失败处理函数
                            $.messager.alert('警告', '请求失败!', 'warning');
                        }
                  });
                  if (category == 2 || category == 4) { //当选择端口号与用户名时提示加载
                        return "loading";
                  } else { //其他情况显示所属图例以及名称
                        return myChart.getOption().series.categories.name + ":" + params.name;
                  }

                }
            },

            legend: { //=========圖表控件
                show: true,
                data: [{
                  name: '负载',

                  icon: 'rect' //'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'

                }, {
                  name: '中间件',

                  icon: 'roundRect'
                }, {
                  name: '端口号',

                  icon: 'circle'
                }, {
                  name: '数据库',

                  icon: 'circle'
                }, {
                  name: '用户名',
                  icon: 'roundRect'
                }]
            },
            series: [{
                type: 'graph', //关系图
                name: "监控管理系统", //系列名称,用于tooltip的显示,legend 的图例筛选,在 setOption 更新数据和配置项时用于指定对应的系列。
                layout: 'force', //图的布局,类型为力导图,'circular' 采用环形布局,见示例 Les Miserables
                legendHoverLink: true, //是否启用图例 hover(悬停) 时的联动高亮。
                hoverAnimation: true, //是否开启鼠标悬停节点的显示动画
                coordinateSystem: null, //坐标系可选
                xAxisIndex: 0, //x轴坐标 有多种坐标系轴坐标选项
                yAxisIndex: 0, //y轴坐标
                force: { //力引导图基本配置
                  //initLayout: ,//力引导的初始化布局,默认使用xy轴的标点
                  repulsion: 100, //节点之间的斥力因子。支持数组表达斥力范围,值越大斥力越大。
                  gravity: 0.03, //节点受到的向中心的引力因子。该值越大节点越往中心点靠拢。
                  edgeLength: 80, //边的两个节点之间的距离,这个距离也会受 repulsion。 。值越小则长度越长
                  layoutAnimation: true
                        //因为力引导布局会在多次迭代后才会稳定,这个参数决定是否显示布局的迭代动画,在浏览器端节点数据较多(>100)的时候不建议关闭,布局过程会造成浏览器假死。
                },
                roam: true, //是否开启鼠标缩放和平移漫游。默认不开启。如果只想要开启缩放或者平移,可以设置成 'scale' 或者 'move'。设置成 true 为都开启
                nodeScaleRatio: 0.6, //鼠标漫游缩放时节点的相应缩放比例,当设为0时节点不随着鼠标的缩放而缩放
                draggable: true, //节点是否可拖拽,只在使用力引导布局的时候有用。
                focusNodeAdjacency: true, //是否在鼠标移到节点上的时候突出显示节点以及节点的边和邻接节点。
                //symbol:'roundRect',//关系图节点标记的图形。ECharts 提供的标记类型包括 'circle'(圆形), 'rect'(矩形), 'roundRect'(圆角矩形), 'triangle'(三角形), 'diamond'(菱形), 'pin'(大头针), 'arrow'(箭头) 也可以通过 'image://url' 设置为图片,其中 url 为图片的链接。'path:// 这种方式可以任意改变颜色并且抗锯齿
                //symbolSize:10 ,//也可以用数组分开表示宽和高,例如 如果需要每个数据的图形大小不一样,可以设置为如下格式的回调函数:(value: Array|number, params: Object) => number|Array
                //symbolRotate:,//关系图节点标记的旋转角度。注意在 markLine 中当 symbol 为 'arrow' 时会忽略 symbolRotate 强制设置为切线的角度。
                //symbolOffset:,//关系图节点标记相对于原本位置的偏移。
                edgeSymbol: ['none', 'none'], //边两端的标记类型,可以是一个数组分别指定两端,也可以是单个统一指定。默认不显示标记,常见的可以设置为箭头,如下:edgeSymbol: ['circle', 'arrow']
                edgeSymbolSize: 10, //边两端的标记大小,可以是一个数组分别指定两端,也可以是单个统一指定。
                itemStyle: { //===============图形样式,有 normal 和 emphasis 两个状态。normal 是图形在默认状态下的样式;emphasis 是图形在高亮状态下的样式,比如在鼠标悬浮或者图例联动高亮时。
                  normal: { //默认样式
                        label: {
                            show: true
                        },
                        borderType: 'solid', //图形描边类型,默认为实线,支持 'solid'(实线), 'dashed'(虚线), 'dotted'(点线)。
                        borderColor: 'rgba(255,215,0,0.4)', //设置图形边框为淡金色,透明度为0.4
                        borderWidth: 2, //图形的描边线宽。为 0 时无描边。
                        opacity: 1
                            // 图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。默认0.5

                  },
                  emphasis: { //高亮状态

                  }
                },
                lineStyle: { //==========关系边的公用线条样式。
                  normal: {
                        color: 'rgba(255,0,255,0.4)',
                        width: '3',
                        type: 'dotted', //线的类型 'solid'(实线)'dashed'(虚线)'dotted'(点线)
                        curveness: 0.3, //线条的曲线程度,从0到1
                        opacity: 1
                            // 图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。默认0.5
                  },
                  emphasis: { //高亮状态

                  }
                },
                label: { //=============图形上的文本标签
                  normal: {
                        show: true, //是否显示标签。
                        position: 'inside', //标签的位置。['50%', '50%']
                        textStyle: { //标签的字体样式
                            color: '#cde6c7', //字体颜色
                            fontStyle: 'normal', //文字字体的风格 'normal'标准 'italic'斜体 'oblique' 倾斜
                            fontWeight: 'bolder', //'normal'标准'bold'粗的'bolder'更粗的'lighter'更细的或100 | 200 | 300 | 400...
                            fontFamily: 'sans-serif', //文字的字体系列
                            fontSize: 12, //字体大小
                        }
                  },
                  emphasis: { //高亮状态

                  }
                },
                edgeLabel: { //==============线条的边缘标签
                  normal: {
                        show: false
                  },
                  emphasis: { //高亮状态

                  }
                },
                //别名为nodes name:影响图形标签显示,value:影响选中后值得显示,category:所在类目的index,symbol:类目节点标记图形,symbolSize:10图形大小
                //label:标签样式。
                data: [{
                  id: 0,
                  category: 0,
                  name: '101.133.8.88',
                  symbol: 'roundRect',
                  value: 20,
                  symbolSize: 80
                }, {
                  id: 1,
                  category: 1,
                  name: '192.168.8.88',
                  symbol: 'rect',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 2,
                  category: 2,
                  name: '7001',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60,
                  yId: "jvm",
                  host: "192.168.6.37",
                  port: "7001",
                  username: "weblogic",
                  pwd: "weblogic1"
                }, {
                  id: 3,
                  category: 2,
                  name: '7100',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 4,
                  category: 1,
                  name: '102.12.33.23',
                  symbol: 'rect',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 5,
                  category: 2,
                  name: '7001',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 6,
                  category: 2,
                  name: '7100',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 7,
                  category: 2,
                  name: '7001',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 8,
                  category: 1,
                  name: '101.11.66.6',
                  symbol: 'rect',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 9,
                  category: 2,
                  name: '7101',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 10,
                  category: 2,
                  name: '7101',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 11,
                  category: 2,
                  name: '7001',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 12,
                  category: 2,
                  name: '7100',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 60
                }, {
                  id: 13,
                  category: 3,
                  name: '192.168.44.44',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 14,
                  category: 3,
                  name: '192.168.33.33',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 15,
                  category: 3,
                  name: '192.168.22.22',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 70
                }, {
                  id: 16,
                  category: 4,
                  name: '55555555555',
                  symbol: 'circle',
                  value: 20,
                  symbolSize: 70,
                  yId: "jdbc",
                  port: "1521",
                  host: "192.168.11.11",
                  username: "222222222",
                  pwd: "11111111",
                  instance: "orcl"
                }],
                categories: [ //symbol name:用于和 legend 对应以及格式化 tooltip 的内容。 label有效
                  {
                        name: '负载',
                        symbol: 'rect',
                        label: { //标签样式
                        }
                  }, {
                        name: '中间件',
                        symbol: 'rect'
                  }, {
                        name: '端口号',
                        symbol: 'roundRect'
                  }, {
                        name: '数据库',
                        symbol: 'roundRect'
                  }, {
                        name: '用户名',
                        symbol: 'roundRect'
                  }
                ],
                links: [ //edges是其别名代表节点间的关系数据。
                  {
                        source: 1,
                        target: 0
                  }, {
                        source: 4,
                        target: 0
                  }, {
                        source: 8,
                        target: 0
                  }, {
                        source: 2,
                        target: 1
                  }, {
                        source: 3,
                        target: 1
                  }, {
                        source: 5,
                        target: 4
                  }, {
                        source: 6,
                        target: 4
                  }, {
                        source: 7,
                        target: 4
                  }, {
                        source: 9,
                        target: 8
                  }, {
                        source: 10,
                        target: 8
                  }, {
                        source: 11,
                        target: 8
                  }, {
                        source: 12,
                        target: 8
                  }, {
                        source: 13,
                        target: 6
                  }, {
                        source: 14,
                        target: 6
                  }, {
                        source: 15,
                        target: 2
                  }, {
                        source: 16,
                        target: 15
                  }
                ]
            }]
      };

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

      /*ECharts3 方法部分 开始*/
      function appendPath(params) { //拼接节点关系并显示在左下角,
            var option = myChart.getOption();
            var series = option.series; //获取图表
            var nodesOption = series.data; //获取所有数据
            var links = series.links; //获取所有连线
            if (params.dataType == "node") { //dataType可以是edge(线条)或node(数据)
                var id = params.data.id;
                var categoryName = series.categories.name; //获取当前节点的图例名称
                var str = categoryName + ":" + nodesOption.name;
                var i = 0;
                var map = {};
                for (i = 0; i < links.length; i++) {
                  map.source] = links.target;
                }

                while (true) {
                  if (map == undefined) {
                        break;
                  }
                  //获取父节点的图例名称并连接
                  str = series.categories].category].name + ":" + nodesOption].name + "->" + str;
                  id = map;
                }
                return str;
            } else if (params.dataType == "edge") { //当鼠标停留在连线上时,暂不处理
                return "";
            }
      }

      function openOrFold(params) { //该事件会提示节点间关系
            var str = appendPath(params);
            document.getElementById("main_1").innerHTML = str;
            return str;
      }
      //var ecConfig = echarts.config; echarts2的获取事件方法,当前为echarts3
      myChart.on('mouseover', openOrFold);
    </script>
</body>

</html>

https://blog.51cto.com/u_15361954/4624984
页: [1]
查看完整版本: #私藏项目实操分享# Echarts实操纪实,需要实现一个日程表,以及常用属性