Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

PlantUML: Cusotmize colors, fonts in state diagram using skinparam command

customizeUsingSkinParam.txt

@startuml

skinparam backgroundColor LightBlue

skinparam state {
	StartColor PaleGreen
	EndColor brown
	BackgroundColor gold
	BackgroundColor aqua
	BackgroundColor> pink
	BorderColor Gray
	FontName Impact
}

left to right direction

state state1 
state state2 
state state3
state state4
state state5 >

[*] --> state1
state1 --> state2
state2 --> state3
state3 --> state4
state4 --> state5
state5 --> [*]


@enduml

 

Above snippet generate below Command.

 


Previous                                                    Next                                                    Home


This post first appeared on Java Tutorial : Blog To Learn Java Programming, please read the originial post: here

Share the post

PlantUML: Cusotmize colors, fonts in state diagram using skinparam command

×

Subscribe to Java Tutorial : Blog To Learn Java Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×