0

在我的项目中,当我对顶点进行分组时,默认情况下会在边缘添加一个虚线形状。我希望我可以在用户可以交互的这个窗台上添加一张图片。

例如:

未展开:

在此处输入图像描述

展开:

在此处输入图像描述

4

1 回答 1

0

解决方案:

 mxIGraphModel model = graph.getModel();
// start to change model
model.beginUpdate();
mxGeometry geo = new mxGeometry(0, 0.5, PORT_DIAMETER,
                        PORT_DIAMETER);
// Because the origin is at upper left corner, need to translate to
// position the center of port correctly
geo.setOffset(new mxPoint(-PORT_RADIUS, -PORT_RADIUS));
geo.setRelative(true);

mxCell port = new mxCell(cell.getAttribute("label"), geo,
                        style);
port.setVertex(true);
//is not a port!!!!!!!!
port.setConnectable(false);
graph.addCell(port, cell);
//send to back! 
graph.cellsOrdered(new Object[]{cell}, true);
// end changes, generate the events and     update UndoManager
                model.endUpdate();

阿特,亚历山大。

于 2014-03-21T03:24:18.617 回答