zhexueren commented on issue #13688:
URL: 
https://github.com/apache/incubator-echarts/issues/13688#issuecomment-735761072


   @plainheart  you are right. The toFixed() can't be used in string type.
   #### Changes:
   ```
   - params.data.toFixed(2)+'%'
   + parseFloat(params.data).toFixed(2)+'%'
   ```
   After modification, it can work!But I think echart needs an optimization on 
this issue。


----------------------------------------------------------------
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:
[email protected]



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

Reply via email to