Is there a way to set the text alignment for a specific stereotype in component diagrams? Right now, I can only either get everything changed by a global skinparameter, or anything at all. Isn't there a middle ground?
EDIT: inclusion of an example. In the diagram below, I don't know how to centralize / align the text to the left on those components individually.
@startuml
skinparam {
defaultTextAlignment left
}
skinparam component {
defaultTextAlignment<<centered>> center
}
component left [
I wanted this long long long text
aligned to the left
]
component center<<centered>> [
I wanted this long long long text
centered
]
@enduml