mxGraph
iteye_4238
这个作者很懒,什么都没留下…
展开
-
Example 学习笔记 - codec
Codec - Dynamically creating a graph from XML and encoding the model into XML, as well as changing the default style for edges in-place. 编码/解码器 可以将graph对象和xml相互转换 [url]http://localhost/mxgraph/j...2013-05-20 12:12:33 · 116 阅读 · 0 评论 -
什么是mxGraph
[size=large]什么是mxGraph[/size] mxGraph是一套开发工具库,主要用于图表图形的显示交互,比如工作流建模。支持的技术有:Java JavaScript PHP .NET。这里只选择JavaScript方向学习 下载地址:[url]http://www.jgraph.com/mxdownload.html[/url] 中文手册:[url]http://ww...2013-05-20 13:55:22 · 325 阅读 · 0 评论 -
Example 学习笔记 - dynamicloading
Dynamicloading - Loading graph model data dynamically to limit the number of cells in the model. 动态加载图形 [url]http://localhost/mxgraph/javascript/examples/dynamicloading.html[/url] [code="js"] ...2013-05-24 14:28:02 · 118 阅读 · 0 评论 -
全局设置
// 无效 graph.setEnabled(false); // 连接 graph.setConnectable(true); // 提示信息 graph.setTooltips(true); // 右键移动容器坐标轴 graph.setPanning(true); // 容器大小自适应 graph.setResizeContainer(true); //...原创 2013-05-27 14:33:01 · 552 阅读 · 0 评论