how can I specify the box width of an UML class diagram. In the example I use classA and classB and want them to have the same box witdh (yellow) so that the width is independent of the method / attribute names.
Please find the UML code below and the attached screenshot with the current result (left) and the prefered result (right).
Thanks a lot for your support :)
@startuml testWidth
class classA {
{field} - attributeA : int
{field} - attributeB : int
{method} + methodA()
{method} + methodB()
{method} + veeeeeeery_looooong_named_method()
}
class classB {
{field} - attributeC : int
}
classA <|-- classB
@enduml
