ClassDiagram: Change font color of one method or datamember

0 votes
asked May 18, 2020 in Question / help by ndtrek07 (120 points)
I have a current-state class diagram, and two proposed updates to it. I'd like to change the font color of the things that have changed between the two, so you still have the full context, but can easily see the changes. So the method that has changed would be in red font, for example.

Is this possible?

1 Answer

0 votes
answered May 19, 2020 by Serge Wenger Work (15,620 points)

@startuml
class User {
  .. Old ..
  +getName()
  + getAddress()
  .. News ..
  + <color:Red>setName()</color>
}
@enduml

...