问题标签 [jgraph]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - 如何将窗格的背景组件向右对齐?
我有一个从 JGraph 扩展的组件“graphEditorPane”。现在我有这个代码:
问题是这种情况标签总是与窗格背景的左上角对齐。有没有办法将它设置在窗格(背景)的中心?
graph - JGraphX Takes a Long Time to Construct Graph
I'm constructing a graph with JGraphX. Using the following code, it takes an inordinately long time to build compared to similar graph implementations like JGraphT. Why would this be? The vertices are created quickly, but the nested loops that create the edges take a long time, especially when the array sizes are 1000.
graph - 有什么方法可以在 JgraphX 中添加指南吗?
我看到可以在 mxGraph 的 javascript 版本中使用指南,我想知道在 Java 版本中是否有一些方法可以做到这一点?
java - 读取 .csv 文件并使用 jgraph 绘制图形
这段代码怎么写?
我有 .csv 文件。文件内容如下:
甲,乙
公元前
A,F
F,G
G,H
乙,丁
每行有 2 个顶点,并且边缘应该在它们之间添加。我的 csv 文件有 100 行。
我知道如何读取 csv 文件以及如何第一次添加顶点,但是如果顶点重复,我应该怎么知道,我以前有它以及如何找到它来添加边缘:(
如何编写此代码以获得此输出?
java - Jgraph (vanilla): how to set edge label, ProM-specific
I'm currently writing a plugin for ProM in case someone is familiar with it. In general, there is a graph, represented as ProMJGraph
, which is directly derived from JGraph
.
This graph contains:
ProMGraphEdge
's (direct child oforg.jgraph.graph.DefaultEdge
) andProMGraphCell
's (direct child oforg.jgraph.graph.DefaultGraphCell
).
I have to put labels onto the edges.
For example I stored a pointer to the first edge of the graph named jgraph
to the variable e0
, of type ProMGraphEdge
.
I failed to google out, where and what should I now call in order to set the label «hello» for the edge e0
?
If anyone at list has a link to JGraph manual, please post it here. I failed to find a referencebook for jgraph and NOT JGraphX, nor JGraphT.
upd. Found it: http://touchflow.googlecode.com/hg-history/75fada644b2a19c744130923cbd34747fba861a2/doc/jgraphmanual.pdf
upd2. I found chapter 3.5.2 «Using edges» which should contain the answer to my question. It's probably ProM-specific that the source provided in the pdf does not work for me. Maybe if there is anyone exprienced in the Process Miner (ProM), he/she can give me some hint if there is something tricky about ProMJGraph
.
java - JGraph/JGraphX : 创建一个非常复杂的图形
我目前正在开发一种允许创建游戏本的软件,并且正在尝试添加图形视图。我创建了一个图,其中顶点是段落,边缘是它们之间的链接。
我制作的游戏书有100多个段落,而且都是极其交织的。首先,我尝试使用 JGraphX,但结果在应用布局后变得一团糟。由于 JGraphX 的帮助和示例很少,我无法解决它,所以我用 JGraph 5.13 试试运气,因为它有外观(找不到等效的 JGraphX)。
我的问题是立面在我添加的前 87 条边上效果很好。当我再添加一个时,我得到了这个异常:
我不确定下一步该怎么做。JGraph 5.13 不是为制作如此混乱的图而设计的吗?我可以使用一些等效的 JGraphX 外观吗?我错过了什么吗?
java - 从字符串数组到块图
我制作了一个程序,它通过 Jena 获取一些 SPARQL 查询的结果,并将它们保存在二维字符串中(即二维字符串数组)。我只想取第一列的值并设计一个块图,其中每个块都包含第一列的每个值,并将它们相互连接起来。
根据我的阅读,JGraph似乎对此非常有帮助,但我下载了它并尝试这样做,但我失败了。
我怎么能用 JGraph 做到这一点,或者还有其他方法吗?
java - 将 JAXB 与 JgraphX 一起使用?
我有一些用 JAXB 注释映射的实体将它们转换为 xml,但是在这些实体 mxCell 中有一个对象,如何在代码库 JgraphX 中不添加注释的情况下映射该对象?
有我的 Objeto 类:
它给了我以下例外:
当接口的实现未正确映射到 Jaxb 时会发生该异常,但我不想进入 jgraphx 库并对其进行修改
java - 如何使用jgraph?
我在使用 JGraphT 可视化图形时遇到问题。我使用 netBeans,我为 JGraph 和 JGraphT 导入了 .jar,并通过 JGraph 从 JGraphT Visualizations复制了所有内容,并添加了以下代码:
但我仍然没有图形可视化。我应该怎么做才能使图表在表单上可视化?
java - 当 setLabelsClipped 为 true 时,顶点标签绘制在顶点之外、滚动条上方和其他组件上
我使用 JGraph 已经有一段时间了,当您将标签剪辑设置为 true 时,似乎存在绘画问题:
以下简化示例显示了您可能会弄乱的实时应用程序中的问题:
值得注意的是,overpaint 只发生在顶点的范围内。以下是带有剪裁的名称:
并带有剪辑:
我现在正在研究 JGraphx 源代码,看看问题出在哪里。以前有人解决过这个问题吗?显然设置 graph.setLabelsClipped(false) 可以解决它,但我不想让我的顶点标签溢出我的顶点边界。