It is possible to style the class name in PlantUML to italic by making the class abstract. Is there a way to style the class name so that it is bold as in the example class below?
2 Answers
you can put the name of the class between "** and **".
Example:
@startuml
class **House** {
}
@enduml
1 Comment
Christophe
Excellent. But is there a way to get this systematically, i.e. using
skinparam ?There is work now to support styles (check the PlantUML Q&A forum for more info).
@startuml
<style>
classDiagram {
class {
' attributes and methods
FontColor blue
BackgroundColor yellow
' class name
header {
FontSize 20
FontColor violet
FontStyle bold
}
}
}
</style>
hide circle
class User {
name : String
id : integer
toString() : String
}
@enduml

