`

js画图开发库--mxgraph--[groups-组.html]

阅读更多

 js画图开发库--mxgraph--[groups-组.html] 

 

子元素会继承父元素的隐藏、显示:

<!Doctype html>
<html xmlns=http://www.w3.org/1999/xhtml>
	<head>
	<meta http-equiv=Content-Type content="text/html;charset=utf-8">
	<title>组</title>

	<!-- 如果本文件的包与src不是在同一个目录,就要将basepath设置到src目录下 -->
	<script type="text/javascript">
		mxBasePath = '../src';
	</script>

	<!-- 引入支持库文件 -->
	<script type="text/javascript" src="../src/js/mxClient.js"></script>
	<!-- 示例代码 -->
	<script type="text/javascript">
		//覆写检查是否根节点
		mxGraph.prototype.isValidRoot = function()
		{
			return false;
		};
		
		// 如果选择多个单元格, 不清除选择
		var graphHandlerMouseDown = mxGraphHandler.prototype.mouseDown;
		mxGraphHandler.prototype.mouseDown = function(sender, me)
		{
			graphHandlerMouseDown.apply(this, arguments);
	
			if (this.graph.isCellSelected(me.getCell()) && this.graph.getSelectionCount() > 1)
			{
				this.delayedSelection = false;
			}
		};
		
		// 覆写元素初始化事件
		var graphHandlerGetInitialCellForEvent = mxGraphHandler.prototype.getInitialCellForEvent;
		mxGraphHandler.prototype.getInitialCellForEvent = function(me)
		{
			var model = this.graph.getModel();
			var psel = model.getParent(this.graph.getSelectionCell());
			var cell = graphHandlerGetInitialCellForEvent.apply(this, arguments);
			var parent = model.getParent(cell);
			
			if (psel == null || (psel != cell && psel != parent))
			{
				while (!this.graph.isCellSelected(cell) && !this.graph.isCellSelected(parent) &&
						model.isVertex(parent) && !this.graph.isValidRoot(parent))
				{
					cell = parent;
					parent = this.graph.getModel().getParent(cell);
				}
			}
			
			return cell;
		};
		
		// 鼠标延迟选择子元素
		var graphHandlerIsDelayedSelection = mxGraphHandler.prototype.isDelayedSelection;
		mxGraphHandler.prototype.isDelayedSelection = function(cell)
		{
			var result = graphHandlerIsDelayedSelection.apply(this, arguments);
			var model = this.graph.getModel();
			var psel = model.getParent(this.graph.getSelectionCell());
			var parent = model.getParent(cell);
			
			if (psel == null || (psel != cell && psel != parent))
			{
				if (!this.graph.isCellSelected(cell) && model.isVertex(parent) && !this.graph.isValidRoot(parent))
				{
					result = true;
				}
			}
			
			return result;
		};
		
		// 元素组延迟选择
		mxGraphHandler.prototype.selectDelayed = function(me)
		{
			var cell = me.getCell();
			
			if (cell == null)
			{
				cell = this.cell;
			}
			
			var model = this.graph.getModel();
			var parent = model.getParent(cell);
			
			while (this.graph.isCellSelected(cell) && model.isVertex(parent) && !this.graph.isValidRoot(parent))
			{
				cell = parent;
				parent = model.getParent(cell);
			}
			
			this.graph.selectCellForEvent(cell, me.getEvent());
		};
	
		// 返回最后选定的父节点
		mxPanningHandler.prototype.getCellForPopupEvent = function(me)
		{
			var cell = me.getCell();
			var model = this.graph.getModel();
			var parent = model.getParent(cell);
			
			while (model.isVertex(parent) && !this.graph.isValidRoot(parent))
			{
				if (this.graph.isCellSelected(parent))
				{
					cell = parent;
				}
				
				parent = model.getParent(parent);
			}
			
			return cell;
		};
	
		// 程序在此启动
		function main(container)
		{
			// 浏览器兼容性检测
			if (!mxClient.isBrowserSupported())
			{
				mxUtils.error('Browser is not supported!', 200, false);
			}
			else
			{
				// 去锯齿效果
				mxRectangleShape.prototype.crisp = true;
				
				// 在容器中创建图形
				var graph = new mxGraph(container);
				graph.constrainChildren = false;
				graph.extendParents = false;
				graph.extendParentsOnAdd = false;

				// 可选择画布自适应
				//graph.setResizeContainer(true);
				
				// 启用浏览器默认右键下拉列表
				new mxRubberband(graph);
				
				// 创建默认窗体
				var parent = graph.getDefaultParent();
								
				// 开启更新事务
				graph.getModel().beginUpdate();
				try
				{
					var v1 = graph.insertVertex(parent, null, 'Hello,', 20, 20, 120, 60);
					var v2 = graph.insertVertex(v1, null, 'World!', 90, 20, 60, 20);
				}
				finally
				{
					// 结束更新事务
					graph.getModel().endUpdate();
				}
			}
		};
	</script>
</head>

<!-- 页面载入时启动程序 -->
<body onload="main(document.getElementById('graphContainer'))">

	<!-- 创建带网格壁纸和曲线的一个容器  -->
	<div id="graphContainer"
		style="overflow:hidden;width:321px;height:241px;background:url('editors/images/grid.gif');cursor:default;">
	</div>
</body>
</html>

 

 

分享到:
评论

相关推荐

    mxgraph.MXGRAPH..MXGRAPH..

    MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..MXGRAPH..

    mxGraph 1.4.0.0

    资源:mxGraph;包含ie,Firefox两个版本;版本号都是1.4.0.0;只带了一个Hello World的示例,其他的例子请自己去官网找吧

    mxgraph开发包

    mxgraph开发包

    js画图框架--mxgraph--入门

    NULL 博文链接:https://chwshuang.iteye.com/blog/1797168

    mxGraph绘图插件

    mxGraph里头包含源码,以及常用的一些实例,相关介绍可以查阅博客:http://www.cnblogs.com/shawWey/p/7115124.html

    mxGraph:在HTML页面中制作流程图的JS插件

    这个插件支持在HTML页面中插入流程图,画得很漂亮 :-)

    mxGraph中文文档.md

    mxgraph.js中文文档是一个官方的api,翻译来源于sunflower(github: https://github.com/SunInfoFE),提供给更多的开发者参考和共享源码资源!

    typed-mxgraph-example-bundled-with-webpack

    带Webpack的typed-mxgraph演示 来自Webpack Typescript入门 如何使用 在本地克隆项目 git clone https://github.com/typed-mxgraph/typed-mxgraph-demo.git 切换到项目目录 cd typed-mxgraph-demo 确保使用节点10...

    mxgraph流程图绘制

    Based on the latest web technologies, mxGraph is the ultimate component for drawing diagrams in a browser. Using open standards, mxGraph does not depend on any third-party plugins and proprietary ...

    mxGraph\mxclient-1.8.0.3破解

    mxGraph1.8.0.3破解版mxclient,分IE ,FF 和chrome三个部分,不同浏览器加载不同的js文件,手动尝试过,1.8.0.5官方的例子都可以正常运行。

    mxGraph JS 绘图组件

    mxGraph 是一个 JS 绘图组件适用于需要在网页中设计/编辑 Workflow/BPM 流  程图、图表、网络图和普通图形的 Web 应用程序。mxgraph 下载包中包括用  javescript 写的前端程序,也包括多个和后端程序(java/C#等等)...

    mxgraph-master.zip

    web开发拓扑图插件 mxGraph - An open source JavaScript diagramming component, started in 2005, that works on all major browsers, including touch devices.

    mxGraph绘图软件js库(版本1.9.1.3,破解版)

    十分强大的js绘图工具,适用于设计/编辑 Workflow/BPM 流程图、图表、网络图和普通图形的 Web 应用程序。这是破解过的源js库。

    mxGraph.zip

    mxGraph 简单易用,只需要在HTML文件中加入JavaScript链接,就可立即使用最简洁最强大的基于浏览器自身的绘图工具。 HTML 5和全系列IE支持。 想像一下,整个应用都是基于Web。在浏览器中设计工作流,操纵有背景图...

    mxgraph-svg2shape:mxGraph SVG到Shape的转换工具

    mxgraph-svg2shape 一套将SVG文件转换为mxGraph资源的工具。 该存储库基于: SVG to XML mxGraph stencil definition translation tool. ... 添加 :将XML mxGraph模具定义转换为一组相应JavaScript /

    在线画图wwwdrawio网站的源码基于mxGraph开发

    在线画图www.draw.io网站的源码,基于mxGraph开发

    mxgraph-1_10_4_0

    mxgraph-1_10_4_0 官方源码+文档+示例

    mxgraph-demo-源码.rar

    mxgraph-demo-源码.rar

    mxGraph插件,java代码xml导出成图片

    前段实现mxgraph插件绘制流程图,后台实现保存的xml导出成图片格式,遇到图标没有引用,文字label位置不正确,label换行不识别 标签,linux服务器部署中文字体等问题

    vue-mxgraph-example-master (2).zip

    vue配合mxGraph 入门实例项目,

Global site tag (gtag.js) - Google Analytics