Component diagram in SVG: is there a way to create a tooltip for components and interfaces?

0 votes
asked Aug 4, 2017 in Wanted features by boshka (3,940 points)
such as:

@startuml

component "a" as a #tooltip "component does the following" {

      interface "a1" as a1 #tooltip "interface does the following"

}

@enduml

1 Answer

0 votes
answered Aug 7, 2017 by Serge Wenger Work (15,620 points)

Hello,

You can try:

@startuml
package "a" as a [[{component does the following}]] {
 
      interface "a1" as a1 [[{interface does the following}]]
 
}
@enduml
 

It seem not working for a component

@startuml
component "a" as a [[{component does the following}]] {
 
      interface "a1" as a1 [[{interface does the following}]]
 
}
@enduml
...