上一篇: 雷达图 https://blog.youkuaiyun.com/zjw_python/article/details/98486655
下一篇: 树图 https://blog.youkuaiyun.com/zjw_python/article/details/98492510
代码结构和初始化画布的Chart对象介绍,请先看 https://blog.youkuaiyun.com/zjw_python/article/details/98182540
本图完整的源码地址: https://github.com/zjw666/D3_demo/tree/master/src/treeMapChart/basicTreeMap
1 图表效果
2 数据
树图类的数据不再是csv格式,而是json
{
"name": "grandfather",
"children": [
{
"name": "father",
"children": [
{
"name": "son",
"children": [
{
"name": "grandson1", "house": 2},
{
"name": "grandson2", "house": 3},
{
"name": "grandson3", "house": 4}
]
}
]
},
{
"name": "mother1",
"children": [
{
"name": "daughter1",
"children": [
{
"name": "granddaughter1", "house": 4},
{
"name": "granddaughter2", "house": 2}
]
},
{
"name": "daughter2",
"children": [
{
"name": "granddaughter3", "house": 4}
]
}
]
},
{
"name": "m