Please support the notation for notes inside components

0 votes
asked Feb 1, 2018 in Wanted features by boshka (3,940 points)
retagged Feb 7, 2018 by boshka
in component diagram, can you support the following notation to be able to put a note inside the component?

@startuml

component "a" as a {

}

note inside a:test

@enduml

I do know that i can do this way:

@startuml

component "a" as a {

   note left of a: test 1

}

@enduml

However, I do need a way of doing this from outside the component's brakets {}

No connection line is needed in this case between component and note.

1 Answer

–1 vote
answered Feb 18, 2018 by Anthony-Gaudino (5,720 points)
commented Feb 18, 2018 by boshka (3,940 points)
This is what I meant. I know how to make it, defining inside the component, however, I need a way of doing the same but defining outside the component:

@startuml
component "a" as a {
}
note inside a:test
@enduml
...