option = {
xAxis: {
type: 'category',
data: ['类目1', '类目2', '类目3', '类目4', '类目5'],
splitArea: {
show: true, // 是否显示分隔区域
areaStyle: {
color: ['rgba(255, 255, 255, 0.1)', 'rgba(200, 200, 200, 0.1)']
// 其他样式属性...
}
}
},
yAxis: {
type: 'value',
name: 'Y轴名称'
},
series: [{
type: 'bar',
data: [10, 20, 15, 25, 18]
}]
};
在上述代码中,splitArea 的属性包括:
- show: 是否显示分隔区域。
- areaStyle: 分隔区域的样式,包括颜色等。这里使用了一个渐变的颜色,通过 color 数组来定义渐变的颜色。
你可以根据具体需求调整这些参数的值。
转载请注明出处:http://www.zyzy.cn/article/detail/5179/ECharts