Ovilia commented on issue #9545: dataset 第一列是数字时,饼状图显示错误
URL: 
https://github.com/apache/incubator-echarts/issues/9545#issuecomment-446077646
 
 
   This is not a bug. Please use it in this way:
   ```js
   var option = {
     legend: {},
     tooltip: {},
     dataset: {
       source: [
         ["时间(分钟)", "数量"],
         ["10", "51141"],
         ["40", "23130"],
         ["220", "4803"],
         ["500", "1282"],
         ["575", "931"],
         ["665", "674"],
         ["825", "440"],
         ["1375", "21"],
         ["1435", "18"],
         ["1145", "8"]
       ]
     },
     series: [{
       type: 'pie',
       encode: {
           value: '数量'
       }
     }]
   };
   ```

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


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to