Given a simple example with components, ports and interfaces.
@startuml
component C {
portin in
portout out
interface IAin
component c1
interface IAout
}
in -d-> IAin
IAin -d-> c1
c1 -d-> IAout
IAout -d-> out
@enduml
portout out is rendered at the right. I expect it to be rendered at the bottom.
Thanks for your work.