Skip to content
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

Bug with activity diagram arrows fork using notation "->", configuring its color based on activityBorderColor value and not on activityArrowColor's #1622

Closed
PedroAlfNeto opened this issue Dec 7, 2023 · 2 comments
Labels
bug Something isn't working

Comments

@PedroAlfNeto
Copy link

issue here is... these arrows are not regular arrows for skinparam... dunno why. so they follow the color of skinparam activityBorderColor and not skinparam activityArrowColor, which is annoying if you want to make borders invisible (e.g. white)
(FYI, I'm new to plantuml)
Issue showcased with case:

@startuml
skinparam activityArrowColor #000000
skinparam activityBorderColor #e03c31
:foo1;
-> normal arrow with text;
fork
  ->
fork again
  ->  fork arrow with text;
end fork
->
:foo5;
@enduml
@github-actions github-actions bot added the triage label Dec 7, 2023
@The-Lum
Copy link
Collaborator

The-Lum commented Dec 8, 2023

Hello @PedroAlfNeto, and all,

Thanks for your report.
Yes there are also even 2 issues:

  1. ❌ Missing last label
  2. ❌ Not good Arrow Color (all arrows should be green)

Here is an example with new style functionality, as:

@startuml
<style>
activityDiagram {
  arrow  {
    LineColor green
    FontColor blue
    LineThickness 2
}
</style>
:foo1;
-> normal arrow with text;
fork
  :fork1;
fork again
  -> txt label;
  :fork2;
  -> txt label;
fork again
  -> fork arrow with text\nmissing arrow label;
end fork
:foo5;
@enduml

For Missing label, see also:

For Color issue see also:

Regards,
Th.

@The-Lum The-Lum added bug Something isn't working and removed triage labels Dec 8, 2023
@arnaudroques
Copy link
Contributor

Last example should be working with version V1.2023.13.
Please reopen the issue if needed!
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants