-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#134: Legend fill whitespace with SHOW_FLOATING_LEGEND() and Lay_Distance() #143
Merged
Potherca
merged 7 commits into
plantuml-stdlib:master
from
kirchsth:feature/141_incl_SHOW_LEGEND_LEFT
Jul 4, 2021
Merged
#134: Legend fill whitespace with SHOW_FLOATING_LEGEND() and Lay_Distance() #143
Potherca
merged 7 commits into
plantuml-stdlib:master
from
kirchsth:feature/141_incl_SHOW_LEGEND_LEFT
Jul 4, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…nIconic and tags (7 - update sample with scaled sprites) plantuml-stdlib#49, plantuml-stdlib#139: Persons can be displayed as portraits - SHOW_PERSON_PORTRAIT()
…._DOWN(), ..._LEFT(), ..._RIGHT()
Potherca
approved these changes
Apr 13, 2021
…() and Lay_Distance() (instead of SHOW_LEGEND_UP(), ..._DOWN(), ..._LEFT(), ..._RIGHT())
…() and Lay_Distance() (2 - fix https://)
…() and Lay_Distance() (3 - legend is reserved; LEGEND() is new default alias)
kirchsth
changed the title
#134: Legend fill whitespace with SHOW_LEGEND_UP(), ..._DOWN(), ..._LEFT(), ..._RIGHT()
#134: Legend fill whitespace with SHOW_FLOATING_LEGEND() and Lay_Distance()
Apr 21, 2021
Potherca
approved these changes
Apr 23, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With following new macros existing whitespaces can be reused
`SHOW_FLOATING_LEGEND(?alias, ?hideStereotype): shows the legend in the drawing area
LEGEND(): is the default alias of the created floating legend and can be used in Lay_Distance() call
Lay_Distance(from, to, ?distance)
: Sets the distance betweenfrom
andto
with down alignment (Lay_Distance(from,to,0) equals Lay_D(from, to)). The default alias of the floating legend is LEGEND().like in the sample based on my extended branch
techn. details: "legend" is a reserved word and cannot be used as (default) alias, therefore I added the LEGEND() macro
BR Helmut