mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
* 🔨 code refactoring and 🔥 remove duplicated code, collapse chart inheritance structure * 📚 update documentation * 🔨 code refactor geolines * 📰 add missing test fixture * Update: 图形类部分细节修改 * Fixed: make flake5 happy * Update: micro docs update
34 lines
550 B
Plaintext
34 lines
550 B
Plaintext
@startuml
|
|
Base <|-- Chart
|
|
Base <|-- Timeline
|
|
Base <|-- Grid
|
|
Base <|-- Overlap
|
|
Chart <|-- Bar
|
|
Chart <|-- Boxplot
|
|
Chart <|-- EffectScatter
|
|
Chart <|-- Funnel
|
|
Chart <|-- Geo
|
|
Chart <|-- Graph
|
|
Chart <|-- HeapMap
|
|
Chart <|-- KLine
|
|
Chart <|-- Line
|
|
Chart <|-- Liquid
|
|
Chart <|-- Map
|
|
Chart <|-- Parallel
|
|
Chart <|-- Pie
|
|
Chart <|-- Polar
|
|
Chart <|-- Radar
|
|
Chart <|-- Sankey
|
|
Chart <|-- Scatter
|
|
Chart <|-- ThemeRiver
|
|
Chart <|-- TreeMap
|
|
Chart <|-- WorldCould
|
|
Chart <|-- Chart3D
|
|
|
|
Chart3D <|-- Bar3D
|
|
Chart3D <|-- Line3D
|
|
Chart3D <|-- Scatter3D
|
|
|
|
Geo <|-- GeoLines
|
|
|
|
@enduml |