Echarts报错 Cant read property getWidth of null的解决方案

简介: Echarts报错 Cant read property getWidth of null的解决方案

在当前页面通过数据传递是正常的,但是在下钻的的时候,定时器仍在工作,导致找不到容器而报错。

option.series[1].data = getArr(communityData0);
            clearInterval(isStop);
            isStop = setInterval(function () {
                getToolTip0();
                option.series[1].data = getArr(communityData0);
                myChart.setOption(option);
            }, 10 * 1000);

解决方案:

javascript
option.series[1].data = getArr(communityData0);
            clearInterval(isStop);
            isStop = setInterval(function () {
                getToolTip0();
                option.series[1].data = getArr(communityData0);
                /*解决方案Begin By Poleung 2020.5.26
                 *获取容器的高度,但每次刷新都会返回首页*/
                var myChart = echarts.init(document.getElementById('container'));
                /*解决方案 End By Poleung 2020.5.26*/
                myChart.setOption(option);
            }, 10 * 1000);

或在跳转页面后,关闭定时器:

clearInterval(isStop);


Done!

相关文章
|
3月前
【bug记录】旋转链表与力扣报错:member access within null pointer of type ‘struct ListNode‘
【bug记录】旋转链表与力扣报错:member access within null pointer of type ‘struct ListNode‘
|
6月前
|
消息中间件 SQL 关系型数据库
实时计算 Flink版操作报错之错误提示“null column 15 Encountered at line 43”如何解决
在使用实时计算Flink版过程中,可能会遇到各种错误,了解这些错误的原因及解决方法对于高效排错至关重要。针对具体问题,查看Flink的日志是关键,它们通常会提供更详细的错误信息和堆栈跟踪,有助于定位问题。此外,Flink社区文档和官方论坛也是寻求帮助的好去处。以下是一些常见的操作报错及其可能的原因与解决策略。
|
3月前
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
79 4
|
3月前
|
JavaScript
Echarts——VUE中非根节点时不显示图表也无报错
Echarts——VUE中非根节点时不显示图表也无报错
37 1
|
3月前
|
JavaScript 前端开发 C++
【Azure Function】调试 VS Code Javascript Function本地不能运行,报错 Value cannot be null. (Parameter 'provider')问题
【Azure Function】调试 VS Code Javascript Function本地不能运行,报错 Value cannot be null. (Parameter 'provider')问题
|
3月前
|
定位技术 Apache
Echarts——Invalid geoJson format Cannot read property 'length' of undefined
Echarts——Invalid geoJson format Cannot read property 'length' of undefined
71 0
|
5月前
|
Java Spring
解决Springboot集成ElasticSearch 报错:A bean with that name has already been defined in null and overriding
解决Springboot集成ElasticSearch 报错:A bean with that name has already been defined in null and overriding
197 2
|
4月前
|
存储
Cannot read properties of null (reading ‘msg‘)
Cannot read properties of null (reading ‘msg‘)
|
4月前
echarts 报错 —— Component series.map not exists. Load it first
echarts 报错 —— Component series.map not exists. Load it first
120 0
|
5月前
|
Web App开发 分布式计算 大数据
MaxCompute操作报错合集之配置归并节点,出现java.lang.NullPointerException: null错误提示,该怎么办
MaxCompute是阿里云提供的大规模离线数据处理服务,用于大数据分析、挖掘和报表生成等场景。在使用MaxCompute进行数据处理时,可能会遇到各种操作报错。以下是一些常见的MaxCompute操作报错及其可能的原因与解决措施的合集。