echarts柱状图实现y轴自动滚动
时间: 2024-01-17 21:19:26 浏览: 144
echarts漂亮的柱状图按月统计
以下是使用Echarts实现柱状图Y轴自动滚动的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Echarts柱状图Y轴自动滚动</title>
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<div id="chart" style="width: 600px; height: 400px;"></div>
<script>
// 初始化echarts实例
var myChart = echarts.init(document.getElementById('chart'));
// 模拟数据
var data = [
{ name: '数据1', value: 100 },
{ name: '数据2', value: 200 },
{ name: '数据3', value: 300 },
{ name: '数据4', value: 400 },
{ name: '数据5', value: 500 },
{ name: '数据6', value: 600 },
{ name: '数据7', value: 700 },
{ name: '数据8', value: 800 },
{ name: '数据9', value: 900 },
{ name: '数据10', value: 1000 }
];
// 配置项
var option = {
xAxis: {
type: 'category',
data: data.map(item => item.name)
},
yAxis: {
type: 'value',
axisLabel: {
formatter: function (value, index) {
// 格式化Y轴标签,添加滚动效果
var currentIndex = data.length - 1 - index;
if (currentIndex >= 0 && currentIndex < data.length) {
return data[currentIndex].name;
}
return '';
}
}
},
series: [{
type: 'bar',
data: data.map(item => item.value)
}]
};
// 使用配置项显示图表
myChart.setOption(option);
</script>
</body>
</html>
```
这段代码使用Echarts库创建了一个柱状图,并通过设置Y轴的axisLabel的formatter函数来实现Y轴标签的滚动效果。在formatter函数中,根据当前索引值获取对应的数据名称,从而实现Y轴标签的滚动显示。
阅读全文