Ability to define hyperlink on diagram elements

0 votes
asked Apr 18, 2013 in Wanted features by lxxc (200 points)
Hi,

Within the context of plantuml diagram rendered in SVG, it would be nice to provide the ability to attach hyperlink to diagram elements (i.e. component, interface, class, group, actor, state...). This feature would help to navigate/browse thru complex system architecture described in several plantuml diagrams.

Of course such hyperlink definition would have no effect on jpeg ouptut image diagram generation.

Thanks

1 Answer

0 votes
answered Apr 18, 2013 by plantuml (294,960 points)
commented Mar 5, 2017 by mnlipp (240 points)
Links are rendered with "target='_top'". While this is sometimes nice, it is not always what I need. Could this be made configurable?
commented Mar 6, 2017 by plantuml (294,960 points)
There is a (not very documented) setting "svgLinkTarget".
For example:

@startuml
skinparam svgLinkTarget foo
start
:foo1 [[http://www.google.com]] end;
stop
@enduml

Is this what you are looking for ?
commented Mar 6, 2017 by mnlipp (240 points)
Yes, that's it. Thanks!
commented Feb 2, 2019 by anonymous
How do I link to an anchor on the same page? I am trying to do this:

  note left
    Client should switch to
    [[#submit Submit Content]] flow
  end note

Where #submit is an anchor on the same page. When rendered, it instead inlines the image itself like this:
data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+P
... much data removed ...
BlbgpDb3VudHJ5OiBVUwotLT48L2c+PC9zdmc+#submit

Notice the anchor is at the end.

I have tried various things like ./#submit and I don't want to put in a real URL for portability.
commented Jan 22, 2020 by anonymus
edited Jan 22, 2020
I was hoping to be able to enrich a partition name with a hyperlink. Is that possible somehow?

partition [[http://link.de partition_name]] {...} does not seem to work...

Thanks a lot in advance!
commented Jun 1, 2021 by Andrey
did you solve this problem? Have the same issue
commented Jun 1, 2021 by The-Lu (63,920 points)

Hello all,

For the partition part, on Activity diagram:

  •  you can use link on double quote, as:
@startuml
start
partition "[[http://plantuml.com partition_name]]" {
    :read doc. on [[http://plantuml.com plantuml_website]];
    :test diagram;
}
end
@enduml

If that can help,
Regards,
Th.

...