提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:吴园园|2020-05-19 11:14:02.990|阅读 378 次
概述:许多应用程序将要求程序员在页面的同一内容区域上显示不同的图。本文将为您介绍如何替换图和模型。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
GoJS是一款功能强大,快速且轻量级的流程图控件,可帮助你在JavaScript 和HTML5 Canvas程序中创建流程图,且极大地简化您的JavaScript / Canvas 程序。
许多应用程序将要求程序员在页面的同一内容区域上显示不同的图。这在单页Web应用程序中尤其常见。通常,您不需要删除该图并创建另一个图即可。由于图很是类似一个视图中的模型-视图架构,可以代替更换Diagram.model,也许还有其他设置,如Diagram.nodeTemplateMap或Diagram.layout。或者,您可以构建更大的模板图,以适应您希望呈现的所有模型。
下面是保留单个图表用作视图表面的示例。它加载了一个Model,一个按钮将加载一个使用不同模板的不同Model,并设置一个不同的Layout。这说明了图的重用,它比处理多个图通常更容易,更有效。这是一次最多显示一张图表的正常方法。
// A minimal Diagram diagram.nodeTemplate = $(go.Node, "Auto", $(go.Shape, "RoundedRectangle", new go.Binding("fill", "color")), $(go.TextBlock, { margin: 3, font: '28px sans-serif' }, // some room around the text new go.Binding("text", "key")) ); // Node template that is only used by the second model diagram.nodeTemplateMap.add("TypeTwo", $(go.Node, "Horizontal", $(go.Shape, "Circle", { width: 24, height: 24, strokeWidth: 0, portId: "" }, new go.Binding("fill", "color")), $(go.TextBlock, { margin: 2, font: "Bold 15px sans-serif" }, new go.Binding("text", "key")) ) ); // Another node template that is only used by the second model diagram.nodeTemplateMap.add("AnotherType", $(go.Node, "Auto", $(go.Shape, "Rectangle", { strokeWidth: 1, fill: 'lightyellow' }, new go.Binding("fill", "color")), $(go.TextBlock, { margin: 12, font: "12px sans-serif" }, new go.Binding("text", "text")) ) ); var firstModel = true; loadModel(); // Toggle the Diagram's Model var button1 = document.getElementById('button1'); button1.addEventListener('click', function() { loadModel(); }); function loadModel() { if (firstModel) { // load the first model diagram.layout = new go.Layout(); // Simple layout diagram.model = new go.GraphLinksModel( [ { key: "Alpha", color: "lightblue" }, { key: "Beta", color: "lightblue" }, { key: "Gamma", color: "lightgreen" }, { key: "Delta", color: "lightgreen" } ], [ { from: "Alpha", to: "Beta" }, { from: "Gamma", to: "Delta" } ]); } else { // load the second model diagram.layout = $(go.TreeLayout, { angle: 90 }); diagram.model = new go.GraphLinksModel( [ { key: "One", category: "TypeTwo", color: go.Brush.randomColor() }, { key: "Two", category: "TypeTwo", color: go.Brush.randomColor() }, { key: "Three", category: "TypeTwo", color: go.Brush.randomColor() }, { key: "Four", category: "TypeTwo", color: go.Brush.randomColor() }, { key: "Five", category: "TypeTwo", color: go.Brush.randomColor() }, { key: "Six", category: "TypeTwo", color: go.Brush.randomColor() }, { text: "Some comment", category: "AnotherType" } ], [ { from: "One", to: "Two" }, { from: "One", to: "Three" }, { from: "Three", to: "Four" }, { from: "Three", to: "Five" }, { from: "Four", to: "Six" } ]); } firstModel = !firstModel; }
请注意,更改模型会破坏未保留在模型中的所有状态,例如当前选择的部件,如果没有针对它们的数据绑定,则所有节点的位置等等。可以在关联之前将它们保存在模型中。
两张图重复使用一个DIV
有时,用户希望一次处理两个或多个图并保持所有图状态。在这种情况下,您可能希望在页面上放置两个图(就像所有带有调色板的示例一样),或者您可能希望将图放入多个“选项卡”或其他某种机制中,例如Planogram示例对其进行处理四个调色板。
另外,您可能希望通过换出两个图,将它们在同一DIV中一次显示一次。您可以通过在第一个图上将Diagram.div设置为null,并在第二个图上设置Div 来交换div 。
// A very minimal Diagram diagram.nodeTemplate = $(go.Node, "Auto", $(go.Shape, "Circle", new go.Binding("fill", "color")), $(go.TextBlock, { margin: 3 }, // some room around the text new go.Binding("text", "key")) ); diagram.model = new go.GraphLinksModel([ { key: "Alpha", color: "lightblue" }, { key: "Beta", color: "orange" } ], [ { from: "Alpha", to: "Beta" }, ]); var diagram2 = $(go.Diagram); diagram2.nodeTemplate = $(go.Node, "Auto", $(go.Shape, "Rectangle", { fill: 'lime' }), $(go.TextBlock, { margin: 5, font: '22px sans-serif' }, new go.Binding("text", "key")) ); diagram2.model = new go.GraphLinksModel([ { key: "BigNode1" }, { key: "BigNode2" }, { key: "BigNode3" }, ], [ ]); var currentDiagram = diagram; // Toggle the Diagram within this DIV with this button var button2 = document.getElementById('button2'); button2.addEventListener('click', function() { // Set one Diagram.div to null, and the other Diagram.div to this div if (currentDiagram === diagram) { var div = diagram.div; diagram.div = null; diagram2.div = div; currentDiagram = diagram2; } else { var div = diagram2.div; diagram2.div = null; diagram.div = div; currentDiagram = diagram; } });
如果选择一个节点并移动它,然后来回切换图,您将看到选择和节点定位仍然存在。两个图都保留在内存中,只有Div被交换以使用一个或另一个。
永久删除图
您可能希望删除图表,并确保它不占用任何内存。为此,如果尚未在其中创建对图表或GraphObjects或工具或布局的任何其他引用,则可以编写:
myDiagram.div = null; myDiagram = null; // Assumes this is the only reference to your Diagram如果您使用过图片,则还应该清除图片缓存,GoJS创建了图片缓存以存储源URL到图片元素的映射:
// Clear any Image references that GoJS is holding onto go.Picture.clearCache();
====================================================
想要购买GoJS正版授权的朋友可以
有关产品的最新消息和最新资讯,欢迎扫描关注下方微信公众号
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:本文探讨 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幢