cddsgtc edited a comment on issue #11023:
URL: 
https://github.com/apache/incubator-echarts/issues/11023#issuecomment-651457530


   我也遇到了同样问题但是已经解决。
   **原因**
   我个人使用的是dataset来指定获取数据,
   在dataset中的末尾多了一个’,‘(逗号)。
   
   ```ts
   dataset: {
                        source: [
                                [ '山东', 901003 ],
                                [ '江苏', 1000000 ],
                                [ '广东', 1200000 ],
                                [ '宁夏', 500021 ],
                                [ '甘肃', 603212 ],
                        ],
                },
   ```
   改为
   ```ts
   dataset: {
                        source: [
                                [ '山东', 901003 ],
                                [ '江苏', 1000000 ],
                                [ '广东', 1200000 ],
                                [ '宁夏', 500021 ],
                                [ '甘肃', 603212 ]
                        ]
                },
   ```


----------------------------------------------------------------
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



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

Reply via email to