echarts旭日图自定义levels
时间: 2023-09-03 19:06:57 浏览: 184
echarts自定义地图
旭日图(Sunburst)是 Echarts 中一种非常强大的图表类型,可以非常直观地展示层次结构数据。在旭日图中,每个数据节点都表示一个环形区域,而每个节点的子节点则表示该节点的一个子区域。
Echarts 旭日图中的每个节点都有一个 `depth` 属性,表示该节点所处在层级的深度。因此,如果想要自定义旭日图中的层级,可以通过设置节点的 `depth` 属性来实现。
例如,我们可以定义三个层级,分别为 `level1`、`level2` 和 `level3`,并分别对应不同的颜色,代码如下:
```javascript
option = {
series: [{
type: 'sunburst',
data: [
{ value: 5, name: '节点1', depth: 0 },
{ value: 3, name: '节点2', depth: 1 },
{ value: 1, name: '节点3', depth: 1 },
{ value: 2, name: '节点4', depth: 2 },
{ value: 4, name: '节点5', depth: 2 },
{ value: 6, name: '节点6', depth: 2 },
{ value: 3, name: '节点7', depth: 1 },
{ value: 2, name: '节点8', depth: 2 },
{ value: 1, name: '节点9', depth: 2 },
],
levels: [
{ itemStyle: { color: '#FFAE57' }, },
{ itemStyle: { color: '#FF7853' }, },
{ itemStyle: { color: '#EA5151' }, },
],
}]
};
```
在上面的代码中,我们通过设置 `depth` 属性来定义了三个层级,分别为 `level1`(深度为0)、`level2`(深度为1)和 `level3`(深度为2)。同时,我们也通过 `levels` 属性对每个层级进行了颜色的定义。
阅读全文