Is it possible to draw only straight or angled lines in class diagrams?

+8 votes
asked Apr 29, 2015 in Wanted features by anonymous
It works well for simple diagram. But if the relations become complex, curves are generated. Thanks.

1 Answer

0 votes
answered Aug 26, 2015 by TJP (400 points)
edited Aug 26, 2015 by TJP

Any progress here?

I found the following code snipped on your git Repo:

public DotSplines getDotSplines() {
        final String value = getValue("linetype");
        if ("polyline".equalsIgnoreCase(value)) {
            return DotSplines.POLYLINE;
        }
        if ("ortho".equalsIgnoreCase(value)) {
            return DotSplines.ORTHO;
        }
        return DotSplines.SPLINES;
    }

And this Thread.

But isn't it possible to use this parameter to force orthogonal lines?

Big class diagrams are getting very confusing with curved lines.

...