I cannot align namespaces/classes vertically in PlantUML output. E.g.:
@startuml
namespace AAA {
class MyBaseClass {
}
class MyDerivedClass {
}
MyBaseClass <|-- MyDerivedClass
}
namespace BBB {
class OtherClass {
}
class YetAnotherClass {
}
OtherClass <|-- YetAnotherClass
}
AAA ---down---> BBB
hide circle
@enduml
Is there a way to get namespace BBB under AAA?

It's possible with
left to right direction(but it's not easy to maintain, since left is up, etc.):