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!

相关文章
|
2天前
|
JSON 前端开发 Java
【Bug合集】——Java大小写引起传参失败,获取值为null的解决方案
类中成员变量命名问题引起传送json字符串,但是变量为null的情况做出解释,@Data注解(Spring自动生成的get和set方法)和@JsonProperty
|
4月前
【bug记录】旋转链表与力扣报错:member access within null pointer of type ‘struct ListNode‘
【bug记录】旋转链表与力扣报错:member access within null pointer of type ‘struct ListNode‘
|
7月前
|
消息中间件 SQL 关系型数据库
实时计算 Flink版操作报错之错误提示“null column 15 Encountered at line 43”如何解决
在使用实时计算Flink版过程中,可能会遇到各种错误,了解这些错误的原因及解决方法对于高效排错至关重要。针对具体问题,查看Flink的日志是关键,它们通常会提供更详细的错误信息和堆栈跟踪,有助于定位问题。此外,Flink社区文档和官方论坛也是寻求帮助的好去处。以下是一些常见的操作报错及其可能的原因与解决策略。
|
4月前
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
解决微软云Azure Function运行报错-Value cannot be null. (Parameter ‘provider‘)
93 4
|
4月前
|
JavaScript
Echarts——VUE中非根节点时不显示图表也无报错
Echarts——VUE中非根节点时不显示图表也无报错
43 1
|
4月前
|
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')问题
|
4月前
|
定位技术 Apache
Echarts——Invalid geoJson format Cannot read property 'length' of undefined
Echarts——Invalid geoJson format Cannot read property 'length' of undefined
112 0
|
6月前
|
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
237 2
|
5月前
|
存储
Cannot read properties of null (reading ‘msg‘)
Cannot read properties of null (reading ‘msg‘)
|
5月前
echarts 报错 —— Component series.map not exists. Load it first
echarts 报错 —— Component series.map not exists. Load it first
155 0

热门文章

最新文章