echarts柱状图滚动条两端椭圆
时间: 2023-11-20 20:56:38 浏览: 77
根据提供的引用内容,没有直接提到如何在ECharts柱状图中添加滚动条两端椭圆的信息。不过,我们可以通过ECharts官方文档中的示例来了解如何实现这个功能。
在ECharts官方文档中,有一个名为“堆叠条形图”的示例,该示例中包含了滚动条两端椭圆的效果。具体实现方法如下:
1.在x轴的配置项中,设置type为'value',boundaryGap为false,使得x轴的刻度线与坐标轴两端对齐。
2.在dataZoom的配置项中,设置show、type、start、end、xAxisIndex等属性,使得滚动条出现在图表底部,并且两端显示椭圆。
下面是示例代码:
```javascript
option = {
xAxis: {
type: 'value',
boundaryGap: false
},
yAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
series: [
{
name: '邮件营销',
type: 'bar',
stack: '总量',
label: {
show: true,
position: 'insideRight'
},
data: [320, 302, 301, 334, 390, 330, 320]
},
{
name: '联盟广告',
type: 'bar',
stack: '总量',
label: {
show: true,
position: 'insideRight'
},
data: [120, 132, 101, 134, 90, 230, 210]
},
{
name: '视频广告',
type: 'bar',
stack: '总量',
label: {
show: true,
position: 'insideRight'
},
data: [220, 182, 191, 234,290, 330, 310]
},
{
name: '直接访问',
type: 'bar',
stack: '总量',
label: {
show: true,
position: 'insideRight'
},
data: [150, 212, 201, 154, 190, 330, 410]
},
{
name: '搜索引擎',
type: 'bar',
stack: '总量',
label: {
show: true,
position: 'insideRight'
},
data: [820, 832, 901, 934, 1290, 1330, 1320]
}
],
dataZoom: [
{
show: true,
type: 'slider',
start: 0,
end: 60,
xAxisIndex: [0],
handleSize: 20,
height: 8,
bottom: 0,
handleStyle: {
color: '#fff',
borderWidth: 0,
borderColor: '#ddd',
shadowBlur: 2,
background: '#ddd',
shadowColor: '#ddd'
},
fillerColor: new echarts.graphic.LinearGradient(1, 0, 0, 0, [{
offset: 0,
color: '#2378f7'
}, {
offset: 1,
color: '#83bff6'
}]),
backgroundColor: '#ddd',
dataBackground: {
areaStyle: {
color: '#ddd'
},
lineStyle: {
opacity: 0.8,
color: '#fff'
}
},
borderColor: '#aaa',
textStyle: {
color: '#fff'
}
}
]
};
```
阅读全文