提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:吴园园|2020-01-15 13:33:20.247|阅读 749 次
概述:通常通过以某种方式“突出显示”节点(或节点或链接的一部分)使其脱颖而出。显示选择装饰时,选择会发生这种情况。但是,人们经常想突出显示与选择无关的零件。可以通过以下方式来实现:更改形状的填充或笔触,将图片源替换为另一个源,添加或移除阴影,等等。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
GoJS是一款功能强大,快速且轻量级的流程图控件,可帮助你在JavaScript 和HTML5 Canvas程序中创建流程图,且极大地简化您的JavaScript / Canvas 程序。
突出显示时更改节点大小
您可能需要增加节点或节点中元素的大小以使其突出显示。例如,您可以在GraphObject.scale或Shape.strokeWidth上具有Binding :
$(go.Node, ... $(go.Shape, ..., new go.Binding("strokeWidth", "isHighlighted", function(h) { return h ? 5 : 1; })), ... )
但是,这样做会更改对象的大小。这可能会使与该节点连接的所有链接的路由无效。在许多应用中这可能无关紧要,但是在某些情况下,某些链接的路线可能已由用户重塑。由于连接的节点移动或大小更改而对路由进行的任何重新计算都可能会丢失该路由。
如果这是您应用程序中的考虑因素,则可以考虑让每个节点都拥有一个附加的Shape,该形状将在显示时提供突出显示,否则将看不见。但是不要切换GraphObject.visible属性,因为这会导致节点更改大小。而是在0.0和1.0之间切换GraphObject.opacity属性。
diagram.nodeTemplate = $(go.Node, "Auto", { locationSpot: go.Spot.Center, // when the user clicks on a Node, highlight all Links coming out of the node // and all of the Nodes at the other ends of those Links. click: function(e, node) { var diagram = node.diagram; diagram.startTransaction("highlight"); diagram.clearHighlighteds(); node.findLinksOutOf().each(function(l) { l.isHighlighted = true; }); node.findNodesOutOf().each(function(n) { n.isHighlighted = true; }); diagram.commitTransaction("highlight"); } }, $(go.Panel, "Auto", $(go.Shape, "Ellipse", { strokeWidth: 2, portId: "" }, new go.Binding("fill", "color")), $(go.TextBlock, { margin: 5, font: "bold 18px Verdana" }, new go.Binding("text", "key")) ), // the highlight shape, which is always a thick red ellipse $(go.Shape, "Ellipse", // this shape is the "border" of the Auto Panel, but is drawn in front of the // regular Auto Panel holding the black-bordered ellipse and text { isPanelMain: true, spot1: go.Spot.TopLeft, spot2: go.Spot.BottomRight }, { strokeWidth: 6, stroke: "red", fill: null }, // only show this ellipse when Part.isHighlighted is true new go.Binding("opacity", "isHighlighted", function(h) { return h ? 1.0 : 0.0; }) .ofObject()) ); // define the Link template diagram.linkTemplate = $(go.Link, { toShortLength: 4, reshapable: true, resegmentable: true }, $(go.Shape, // when highlighted, draw as a thick red line new go.Binding("stroke", "isHighlighted", function(h) { return h ? "red" : "black"; }) .ofObject(), new go.Binding("strokeWidth", "isHighlighted", function(h) { return h ? 3 : 1; }) .ofObject()), $(go.Shape, { toArrow: "Standard", strokeWidth: 0 }, new go.Binding("fill", "isHighlighted", function(h) { return h ? "red" : "black"; }) .ofObject()) ); // when the user clicks on the background of the Diagram, remove all highlighting diagram.click = function(e) { diagram.startTransaction("no highlighteds"); diagram.clearHighlighteds(); diagram.commitTransaction("no highlighteds"); }; diagram.model = new go.GraphLinksModel( [ { key: "Alpha", color: "#96D6D9" }, { key: "Beta", color: "#96D6D9" }, { key: "Gamma", color: "#EFEBCA" }, { key: "Delta", color: "#EFEBCA" } ], [ { from: "Alpha", to: "Beta" }, { from: "Alpha", to: "Gamma" }, { from: "Beta", to: "Beta" }, { from: "Gamma", to: "Delta" }, { from: "Delta", to: "Alpha" } ]);
高亮的形状是外部椭圆,始终具有较粗的红色笔触。它通常通过不透明度为零来隐藏,但是当Part.isHighlighted为true 时,Binding会将其不透明度更改为1 。
突出显示的“形状”始终显示在彩色椭圆和文本面板的前面,方法是将其放在面板的子元素列表之后。但是,由于“自动”面板假定第一个元素充当边框,因此我们需要 在高亮Shape上将GraphObject.isPanelMain设置为true,以使其成为内部面板的边框。
====================================================
想要购买GoJS正版授权的朋友可以
有关产品的最新消息和最新资讯,欢迎扫描关注下方微信公众号
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:GoJS本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢