#1542 Adding gantt to showcases

This commit is contained in:
Knut Sveidqvist
2020-07-30 08:34:41 +02:00
parent f1836c281c
commit a5b01c3f6f
7 changed files with 153 additions and 1 deletions

View File

@@ -143,6 +143,35 @@ When adjusting a theme it might be helpful to look at the theme with these diagr
end
```
### class diagram
```mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
classDiagram
Animal "1" <|-- Duck
Animal <|-- Fish
Animal <--o Zebra
Animal : +int age
Animal : +String gender
Animal: +isMammal()
Animal: +mate()
class Duck{
+String beakColor
+swim()
+quack()
}
class Fish{
-int sizeInFeet
-canEat()
}
class Zebra{
+bool is_wild
+run()
}
```
### Gantt
```mermaid