ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
路径:D:\ireport365\ireport365.war\js\enduser\designer\vs-component-echarts.js 一 添加关系 ~~~ ,{ name: "", type: "echartsRelationship", coverImage: contextPath + "/images/componenttypes/" + locale + "/widget/zh_baiduMap.png?v=3", coverImageWidth: "50%", tip: "走向关系图" } ~~~ 二 添加对象option ~~~ // 关系图对象 start echartsRelationshipOptionTemplate = { background:'rgba(0,0,0,0)', title:{ show:false }, // tooltip: { // formatter: function(x) { // if(x.data.des == undefined){ // return '' // } // return x.data.des; // } // }, tooltip: { trigger: 'item', formatter: "{b}" }, series: [{ type: 'graph', layout: 'force', symbolSize: 30, roam: true, edgeSymbol: ['circle', 'arrow'], edgeLabel: { normal: { textStyle: { fontSize: 20, color:'#ff8800' } } }, force: { repulsion: 2500, edgeLength: [10, 50] }, draggable: true, focusNodeAdjacency:false, lineStyle: { normal: { width: 2, color: 'red', curveness: 0 //边的曲度,支持从 0 到 1 的值,值越大曲度越大。 } }, edgeLabel: { normal: { show: true, formatter: function(x) { return x.name; } } }, label: { normal: { show: false, textStyle: {}, color:'#fff' } }, data: [{ name: '侯亮平', }, { name: '李达康', }, { name: '祁同伟', }, { name: '陈岩石', }, { name: '陆亦可', }, { name: '高育良', }, { name: '沙瑞金', }, { name: '高小琴', }, { name: '高小凤' }, { name: '赵东来', }, { name: '程度', }, { name: '吴惠芬', }, { name: '赵瑞龙', }, { name: '赵立春', }, { name: '陈海', }, { name: '梁璐', }, { name: '刘新建' }, { name: '欧阳菁' }, { name: '吴心怡', }, { name: '蔡成功' }, { name: '丁义珍' }], }], color: '#ff8800' } // 关系end ~~~ 三 copy 组件对象 及初始化数据 ~~~ case "echartsRelationship": var links = [{ source: '高育良', target: '侯亮平', }, { source: '高育良', target: '祁同伟', }, { source: '赵立春', target: '高育良', }, { source: '赵立春', target: '赵瑞龙', }, { source: '赵立春', target: '刘新建', }, { source: '李达康', target: '赵立春', }, { source: '祁同伟', target: '高小琴', }, { source: '陈岩石', target: '陈海', }, { source: '陆亦可', target: '陈海', }, { source: '沙瑞金', target: '陈岩石', }, { source: '祁同伟', target: '陈海', }, { source: '祁同伟', target: '侯亮平', }, { source: '侯亮平', target: '陈海', }, { source: '高育良', target: '吴惠芬', }, { source: '陈海', target: '赵东来', }, { source: '高小琴', target: '高小凤', }, { source: '赵东来', target: '陆亦可', }, { source: '祁同伟', target: '程度', }, { source: '高育良', target: '高小凤', }, { source: '赵瑞龙', target: '祁同伟', }, { source: '李达康', target: '赵东来', }, { source: '赵瑞龙', target: '程度', }, { source: '沙瑞金', target: '李达康', }, { source: '沙瑞金', target: '高育良', }, { source: '祁同伟', target: '梁璐', }, { source: '吴惠芬', target: '梁璐', }, { source: '李达康', target: '欧阳菁', }, { source: '赵瑞龙', target: '刘新建', }, { source: '赵瑞龙', target: '高小琴', }, { source: '赵瑞龙', target: '高小凤', }, { source: '吴心怡', target: '陆亦可', }, { source: '吴心怡', target: '吴惠芬', }, { source: '蔡成功', target: '侯亮平', }, { source: '蔡成功', target: '欧阳菁', }, { source: '欧阳菁', target: '刘新建', }, { source: '刘新建', target: '赵瑞龙', }, { source: '李达康', target: '丁义珍', }, { source: '高小琴', target: '丁义珍', }, { source: '祁同伟', target: '丁义珍', }, { source: '赵瑞龙', target: '丁义珍', }] option = angular.copy(echartsRelationshipOptionTemplate); option.series[0].links =links; break; ~~~ 四 处理数据函数 ~~~ //echarts关系图 internalRefreshechartsRelationshipModelData = function(){ var dimensions = component.config.datasourceConfig.dimensions; var measures = component.config.datasourceConfig.measures; var data = component.context.data; if (data == null || data.length < 1 || dimensions.length < 1) { return } var option = component.config.chartConfig; var data = component.context.data; // console.log(option) var node = []; var node_line = []; var legendData = []; var chartData = []; var measureIdx = 0; if (component.config.receiveMeasureLink != null && component.config.receiveMeasureLink === true) { var newMeasures = scope.getSelectedLinkMeasure(component, component.config.datasourceConfig.measures); for (var i = 0; i < measures.length; i++) { if (newMeasures[i] != null) { measureIdx = i; break } } } /* string 字符串; str 指定字符; split(),用于把一个字符串分割成字符串数组; split(str)[0],读取数组中索引为0的值(第一个值),所有数组索引默认从0开始; */ function getStr(string,str){ var str_before = string.split(str)[0]; var str_after = string.split(str)[1]; node.push(str_before,str_after); var value = data[i][measures[measureIdx].name]; node_line.push({ source: str_before, target: str_after, // name : value }) } // 双层循环改变原数组(数组去重) // function removeArrayRepElement(arr){ // for (var i = 0; i < arr.length; i++) { // for (var j = 0; j < arr.length; j++) { // if (arr[i] == arr[j] && i != j) {//将后面重复的数删掉 // arr.splice(j, 1); // } // } // } // return arr; // } for (var i = 0; i < data.length; i++) { var nodeData = data[i][dimensions[dimensions.length - 1].name]; getStr(nodeData,'-') } if (component.config["measureAlias_" + measureIdx] != null && component.config["measureAlias_" + measureIdx].length > 0) { option.series[0].name = component.config["measureAlias_" + measureIdx] } option.series[0].seriesIndex = measureIdx; // 双层循环改变原数组(数组去重) function removeArrayRepElement(arr){ for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr.length; j++) { if (arr[i] == arr[j] && i != j) {//将后面重复的数删掉 arr.splice(j, 1); } } } return arr; } var nodeArr = removeArrayRepElement(node); for(var i = 0;i<nodeArr.length;i++){ var dd = nodeArr[i]; if(dd){ chartData.push({ name: nodeArr[i] }); } } // console.log(chartData) // 数组里的对象去重复 let newdData = {}; let log = console.log.bind(console); person = chartData.reduce((cur,next) => { newdData[next.name] ? "" : newdData[next.name] = true && cur.push(next); return cur; },[]) //设置cur默认类型为数组,并且初始值为空的数组 // log(person); // console.log(node_line) option.series[0].data = person; option.series[0].links =node_line; component.context.chart.setOption(option, true); } // end ~~~ 五 调用数据处理函数 ~~~ case "echartsRelationship": internalRefreshechartsRelationshipModelData(); break; ~~~ 六 buildDataDescription函数里 scope.$on(event_chartDimensionValueChange, function (s, event) {})里添加 ~~~ case "echartsRelationship": var dataIndex = -1; // console.log(component.config.chartConfig) var option = component.config.chartConfig; console.log(option) for (var i = 0; i < component.config.chartConfig.series[0].data.length; i++) { if ("" + component.config.chartConfig.series[0].data[i].name === "" + event.source.value) { console.log(component.config.chartConfig.series[0].data[i].name) dataIndex = i; break } } console.log(dataIndex) if (dataIndex < 0) { component.context.chart.dispatchAction({ type: "hideTip" }); return } if (dataIndex > -1) { console.log(event.source.value) component.context.chart.dispatchAction({ type: "showTip", name: event.source.value, seriesIndex: 0 }) } break; ~~~ 六 echarts 事件 ~~~ case "echartsRelationship": component.context.chart.on("mouseover", function (param) { if (component.config.datasourceConfig.measures == null || component.config.datasourceConfig.dimensions == null) { return } var data = component.context.data; var dataIndex = param.dataIndex; var to = param.data.name; if (to == null || param.value == null || param.value === "-") { return } component.context.tooltipName = to; scope.notifyDimensionValueChange(null, scope.getLastDimension(), to) }); break; ~~~ 七 在气泡图下面写如下配置项 ~~~ // echarts 关系图 case "echartsRelationship": chartCategory.groups.push({ title: { text: "配置" }, elements: [{ title: "线条颜色", type: "colorpicker", bind: "lineColor" },{ title: "线条曲度", type: "configSlide", bind: "lineCurve", config: { slideStart: 1, slideEnd: 100 } },{ title: "线条宽度", type: "configSlide", bind: "lineWidth", config: { slideStart: 1, slideEnd: 30 } },{ title: "圆点大小", type: "configSlide", bind: "borderMax", config: { slideStart: 28, slideEnd: 100 } },{ title: "原点颜色", type: "colorpicker", bind: "dianColor" },{ title: "显示文字", type: "switch", bind: "fontShow", on: vsLang.on, off: vsLang.off },{ title: "字体颜色", type: "colorpicker", bind: "fontColor" },{ title: "字体大小", type: "configSlide", bind: "fontSize", config: { slideStart: 12, slideEnd: 30 } },{ title: "高亮", type: "switch", bind: "gaoliang", on: vsLang.on, off: vsLang.off }] }) break ~~~ 八 相对还是在气泡图下面添加监听的配置项的代码 ~~~ case "echartsRelationship": scope.$watch("component.config.dianColor", function(newValue, oldValue) { if (newValue != null) { var option = component.config.chartConfig; option.color = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听线条颜色 scope.$watch("component.config.lineColor", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].lineStyle.normal.color = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听线条曲度 scope.$watch("component.config.lineCurve", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].lineStyle.normal.curveness = 0.1 * newValue; scope.component.context.chart.setOption(option, true); } }); // 监听线条宽度 scope.$watch("component.config.lineWidth", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].lineStyle.normal.width = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听圆点大小 scope.$watch("component.config.borderMax", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].symbolSize = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听文字显示 scope.$watch("component.config.fontShow", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].label.normal.show = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听字体颜色 scope.$watch("component.config.fontColor", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].label.normal.color = newValue; scope.component.context.chart.setOption(option, true); } }); // 监听字体颜色 scope.$watch("component.config.fontSize", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].label.normal.fontSize = newValue; scope.component.context.chart.setOption(option, true); } }); // 是否开启高亮 scope.$watch("component.config.gaoliang", function (newValue) { // console.log(newValue) if (newValue != null) { var option = component.config.chartConfig; option.series[0].focusNodeAdjacency = newValue; scope.component.context.chart.setOption(option, true); } }); break; ~~~ 设计页完 分享页 路径 D:\ireport365\ireport365.war\WEB-INF\classes\report-resource\design.js 一 写在气泡图数据处理的上面 ~~~ //echarts关系图 internalRefreshechartsRelationshipModelData = function(){ var dimensions = component.config.datasourceConfig.dimensions; var measures = component.config.datasourceConfig.measures; var data = component.context.data; if (data == null || data.length < 1 || dimensions.length < 1) { return } var option = component.config.chartConfig; var data = component.context.data; // console.log(option) var node = []; var node_line = []; var legendData = []; var chartData = []; var measureIdx = 0; if (component.config.receiveMeasureLink != null && component.config.receiveMeasureLink === true) { var newMeasures = scope.getSelectedLinkMeasure(component, component.config.datasourceConfig.measures); for (var i = 0; i < measures.length; i++) { if (newMeasures[i] != null) { measureIdx = i; break } } } /* string 字符串; str 指定字符; split(),用于把一个字符串分割成字符串数组; split(str)[0],读取数组中索引为0的值(第一个值),所有数组索引默认从0开始; */ function getStr(string,str){ var str_before = string.split(str)[0]; var str_after = string.split(str)[1]; node.push(str_before,str_after); var value = data[i][measures[measureIdx].name]; node_line.push({ source: str_before, target: str_after, // name : value }) } // 双层循环改变原数组(数组去重) function removeArrayRepElement(arr){ for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr.length; j++) { if (arr[i] == arr[j] && i != j) {//将后面重复的数删掉 arr.splice(j, 1); } } } return arr; } for (var i = 0; i < data.length; i++) { var nodeData = data[i][dimensions[dimensions.length - 1].name]; getStr(nodeData,'-') } if (component.config["measureAlias_" + measureIdx] != null && component.config["measureAlias_" + measureIdx].length > 0) { option.series[0].name = component.config["measureAlias_" + measureIdx] } option.series[0].seriesIndex = measureIdx; // 双层循环改变原数组(数组去重) function removeArrayRepElement(arr){ for (var i = 0; i < arr.length; i++) { for (var j = 0; j < arr.length; j++) { if (arr[i] == arr[j] && i != j) {//将后面重复的数删掉 arr.splice(j, 1); } } } return arr; } var nodeArr = removeArrayRepElement(node); for(var i = 0;i<nodeArr.length;i++){ var dd = nodeArr[i]; if(dd){ chartData.push({ name: nodeArr[i] }); } } // 数组里的对象去重复 let newdData = {}; let log = console.log.bind(console); person = chartData.reduce((cur,next) => { newdData[next.name] ? "" : newdData[next.name] = true && cur.push(next); return cur; },[]) //设置cur默认类型为数组,并且初始值为空的数组 // console.log(nodeArr) // console.log(node) // console.log(legendData) // console.log(chartData) // console.log(node_line) option.series[0].data = person; option.series[0].links =node_line; component.context.chart.setOption(option, true); } // end ~~~ 二 调用数据处理函数 ~~~ case "echartsRelationship": internalRefreshechartsRelationshipModelData(); break; ~~~