测试饼状图

203 阅读1分钟
pie title Pets adopted by volunteers
"Dogs" : 386
"Cats" : 85
"Rats" : 15
graph TD
Start --> Stop
标题
classDiagram
Animal <|-- Duck
Animal <|-- Fish
Animal <|-- 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()
}