ankushjamdagani edited a comment on issue #9402: Cannot read property 
'getRawIndex' of undefined
URL: 
https://github.com/apache/incubator-echarts/issues/9402#issuecomment-532095669
 
 
   Same thing happening for me too. I have debugged it to this function. Task 
appears to be null here. And this function is returning undefined.
   
   **Series.js**
   ```
     getData: function (dataType) {
       var task = getCurrentTask(this);
   
       if (task) {
         var data = task.context.data;
         return dataType == null ? data : data.getLinkedData(dataType);
       } else {
         // When series is not alive (that may happen when click toolbox
         // restore or setOption with not merge mode), series data may
         // be still need to judge animation or something when graphic
         // elements want to know whether fade out.
         return inner(this).data;
       }
     }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to