-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Color state diagram "choice" #880
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
Comments
Hello @xeruf, For that you can use @startuml
<style>
diamond {
BackgroundColor #palegreen
LineColor #green
LineThickness 2.5
}
</style>
state state1
state state2
state choice1 <<choice>>
state end3 <<end>>
state1 --> choice1 : 1
choice1 --> state2 : 2
choice1 --> end3 : 3
@enduml If that can help, |
Thank you very much! Please add that to the documentation :) Though I am a little confused that there are html-like |
Yes, we are very slowly moving from In some far future, |
Hi all, [This is an Issue Review]
Regards. |
Reading through https://plantuml.com/state-diagram there seems to be no way to style a "choice"-element, i.e. change background and border color?
I had assumed
skinparam state
would then apply to it as well, but it doesn't...The text was updated successfully, but these errors were encountered: