cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to hide some sequenceFlow in the workflow graph

coolstoneyoung
Champ in-the-making
Champ in-the-making
In some case, too many  lines in a graph is ugly. Is it possible to hide some sequenceFlows in the workflow graph ?

Thanks!
3 REPLIES 3

coolstoneyoung
Champ in-the-making
Champ in-the-making
how to set bpmndi:BPMNEdge dynamic ?  I want to Dynamic Deploy the workflow by BpmnModel.
i have a trick to set  it  negative position  like this:
<code>
  <bpmndi:BPMNEdge bpmnElement="subprocess-useTask-SL" id="BPMNEdge_subprocess-useTask-SL">
        <omgdi:waypoint x="-20.0" y="-20.0"></omgdi:waypoint>      
        <omgdi:waypoint x="-20.0" y="-20.0"></omgdi:waypoint>
      </bpmndi:BPMNEdge>
</code>

frederikherema1
Star Contributor
Star Contributor
You can always manipulate the GraphicInfo objects in the BPMNModel if you want, for the flow-elements you're interested in.

Thanks Frederik!
I got how to manipulate  the GraphicInfo objects in the BPMNModel in the "org.activiti.bpmn.BpmnAutoLayout".