学习使用echats因xAxis值过多,可以滚动的柱状图解决方案

2024-04-02 19:52

本文主要是介绍学习使用echats因xAxis值过多,可以滚动的柱状图解决方案,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

学习使用echats因xAxis值过多,可以滚动的柱状图解决方案

    • 效果图
    • 柱状图代码
    • 关键代码

效果图

在这里插入图片描述

柱状图代码

function echarts() {// 基于准备好的dom,初始化echarts实例var myChart = echarts.init(document.getElementById('echart4'));let xaxisData = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30'];let option = {tooltip: {trigger: 'axis',axisPointer: {lineStyle: {color: '#57617B'}}},"legend": {"data": [{"name": "2023年"},{"name": "2024年"},{"name": "完成率"}],"top": "0%","textStyle": {"color": "rgba(255,255,255,0.9)"//图例文字}},"label": {"show": true, //开启显示"position": 'top', //在右侧显示:right,"textStyle": {"color": "rgba(255,255,255,0.9)"//图例文字}},"xAxis": [{"type": "category",//data: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],data: xaxisData,axisLine: {lineStyle: {color: "rgba(255,255,255,.1)"}},axisLabel: {textStyle: {color: "rgba(255,255,255,.6)", fontSize: '14',},},},],"yAxis": [{"type": "value","name": "金额","min": 0,"max": 10000,"interval": 100,"show": false,"axisLabel": {"show": false,//控制是否显示:true,false},axisLine: {lineStyle: {color: 'rgba(255,255,255,.4)'}},//左线色},{"type": "value","name": "完成率","show": true,"axisLabel": {"show": true,//控制显示},axisLine: {lineStyle: {color: 'rgba(255,255,255,.4)'}},//右线色splitLine: {show: true, lineStyle: {color: "#001e94"}},//x轴线},],"grid": {"top": "10%","right": "30","bottom": "30","left": "2%",},dataZoom: [{xAxisIndex: 0, //这里是从X轴的0刻度开始show: false, //是否显示滑动条,不影响使用type: "inside", // 这个 dataZoom 组件是 inside 型 dataZoom 组件startValue: 0, // 从头开始。endValue: 12, // 一次性展示4个。},],"series": [{"name": "2023年","type": "bar",// "data": [123437323, 123578456, 412345636, 912345676, 295532188, 645232535, 434534523, 666673453, 335665340, 334345326, 442323428, 124553222],"data": [111, 222, 333, 444, 555, 666, 777, 888, 999, 1010, 1111, 1212, 1313, 1414, 1515, 1616, 1717, 1818, 1919, 2020, 2121, 2222, 2323, 2424, 2525, 2626, 2727, 2828, 2929, 3030],"barWidth": "auto",label: {show: true, // 是否显示标签position: 'top', // 标签位置,可选值为:top、bottom、center、inside(柱状图内部)、outside(柱状图外部)textStyle: {color: '#FF00FF', // 标签字体颜色fontSize: 14, // 标签字体大小fontWeight: 'bold', // 标签字体加粗fontStyle: 'italic', // 标签字体斜体fontFamily: 'Arial' // 标签字体}},"itemStyle": {"normal": {"color": {"type": "linear","x": 0,"y": 0,"x2": 0,"y2": 1,"colorStops": [{"offset": 0,"color": "#609db8"},{"offset": 1,"color": "#609db8"}],"globalCoord": false}}}},{"name": "2024年","type": "bar","data": [//  423332331, 789142442, 334354524, 135534536, 247448338, 845533436, 444545222, 209876532, 313226542, 665367567, 246854533, 15655445811, 22, 33, 44, 55, 66, 77, 88, 99, 110, 111, 121, 133, 141, 155, 166, 171, 188, 199, 202, 212, 222, 233, 242, 252, 262, 277, 288, 299, 300],"barWidth": "auto","itemStyle": {"normal": {"color": {"type": "linear","x": 0,"y": 0,"x2": 0,"y2": 1,"colorStops": [{"offset": 0,"color": "#66b8a7"},{"offset": 1,"color": "#66b8a7"}],"globalCoord": false}}},"barGap": "0"},{"name": "完成率","type": "line","yAxisIndex": 1,"data": [//  100, 50, 80, 30, 90, 40, 70, 33, 100, 40, 80, 201, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30],lineStyle: {normal: {width: 2},},"itemStyle": {"normal": {"color": "#cdba00",}},"smooth": true}]};// 使用刚指定的配置项和数据显示图表。/*        myChart.setOption(option);window.addEventListener("resize", function () {myChart.resize();});*/console.log('111option.dataZoom===', option.dataZoom);console.log('111option.dataZoom[0].endValue===', option.dataZoom[0].endValue);console.log('111xaxisData.length===', xaxisData.length);timeInterval = setInterval(() => {console.log('222option.dataZoom===', option.dataZoom);console.log('222option.dataZoom[0].endValue===', option.dataZoom[0].endValue);console.log('222xaxisData.length===', xaxisData.length);if (option.dataZoom[0].endValue == xaxisData.length) {option.dataZoom[0].endValue = 5;option.dataZoom[0].startValue = 0;} else {option.dataZoom[0].endValue = option.dataZoom[0].endValue + 1;option.dataZoom[0].startValue = option.dataZoom[0].startValue + 1;}myChart.setOption(option);}, 2000);}

关键代码

setInterval定时器来实现的自右向左的滚动;

 timeInterval = setInterval(() => {console.log('222option.dataZoom===', option.dataZoom);console.log('222option.dataZoom[0].endValue===', option.dataZoom[0].endValue);console.log('222xaxisData.length===', xaxisData.length);if (option.dataZoom[0].endValue == xaxisData.length) {option.dataZoom[0].endValue = 5;option.dataZoom[0].startValue = 0;} else {option.dataZoom[0].endValue = option.dataZoom[0].endValue + 1;option.dataZoom[0].startValue = option.dataZoom[0].startValue + 1;}myChart.setOption(option);}, 2000);
dataZoom: [{xAxisIndex: 0, //这里是从X轴的0刻度开始show: false, //是否显示滑动条,不影响使用type: "inside", // 这个 dataZoom 组件是 inside 型 dataZoom 组件startValue: 0, // 从头开始。endValue: 12, // 一次性展示4个。},],

这篇关于学习使用echats因xAxis值过多,可以滚动的柱状图解决方案的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/870908

相关文章

使用Python构建智能BAT文件生成器的完美解决方案

《使用Python构建智能BAT文件生成器的完美解决方案》这篇文章主要为大家详细介绍了如何使用wxPython构建一个智能的BAT文件生成器,它不仅能够为Python脚本生成启动脚本,还提供了完整的文... 目录引言运行效果图项目背景与需求分析核心需求技术选型核心功能实现1. 数据库设计2. 界面布局设计3

使用IDEA部署Docker应用指南分享

《使用IDEA部署Docker应用指南分享》本文介绍了使用IDEA部署Docker应用的四步流程:创建Dockerfile、配置IDEADocker连接、设置运行调试环境、构建运行镜像,并强调需准备本... 目录一、创建 dockerfile 配置文件二、配置 IDEA 的 Docker 连接三、配置 Do

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

Java.lang.InterruptedException被中止异常的原因及解决方案

《Java.lang.InterruptedException被中止异常的原因及解决方案》Java.lang.InterruptedException是线程被中断时抛出的异常,用于协作停止执行,常见于... 目录报错问题报错原因解决方法Java.lang.InterruptedException 是 Jav

python使用try函数详解

《python使用try函数详解》Pythontry语句用于异常处理,支持捕获特定/多种异常、else/final子句确保资源释放,结合with语句自动清理,可自定义异常及嵌套结构,灵活应对错误场景... 目录try 函数的基本语法捕获特定异常捕获多个异常使用 else 子句使用 finally 子句捕获所

kkFileView在线预览office的常见问题以及解决方案

《kkFileView在线预览office的常见问题以及解决方案》kkFileView在线预览Office常见问题包括base64编码配置、Office组件安装、乱码处理及水印添加,解决方案涉及版本适... 目录kkFileView在线预览office的常见问题1.base642.提示找不到OFFICE组件

SpringBoot监控API请求耗时的6中解决解决方案

《SpringBoot监控API请求耗时的6中解决解决方案》本文介绍SpringBoot中记录API请求耗时的6种方案,包括手动埋点、AOP切面、拦截器、Filter、事件监听、Micrometer+... 目录1. 简介2.实战案例2.1 手动记录2.2 自定义AOP记录2.3 拦截器技术2.4 使用Fi

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符

Python对接支付宝支付之使用AliPay实现的详细操作指南

《Python对接支付宝支付之使用AliPay实现的详细操作指南》支付宝没有提供PythonSDK,但是强大的github就有提供python-alipay-sdk,封装里很多复杂操作,使用这个我们就... 目录一、引言二、准备工作2.1 支付宝开放平台入驻与应用创建2.2 密钥生成与配置2.3 安装ali

C#中lock关键字的使用小结

《C#中lock关键字的使用小结》在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时,其他线程无法访问同一实例的该代码块,下面就来介绍一下lock关键字的使用... 目录使用方式工作原理注意事项示例代码为什么不能lock值类型在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时