Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kdm

Pages: [1]
1
Hi,
I have similar requests.
you can create an own MDG and define your own connectors.
In the shape script of the connector you can check the current diagram

shape main
{
if(hasProperty("diagram.mdgtype","myMDG::diagram-name"))
{
// implement your connecor drawing here für this diagram
    moveto(0,0);
    lineto(100,0);
} else{
// if now drawing is defined here the connector isn't shown
}

}

   

Pages: [1]