pissang commented on issue #11298: Radar with Log Axis throws error
URL: 
https://github.com/apache/incubator-echarts/issues/11298#issuecomment-534825107
 
 
   Hi @zifix, really appreciate your passion!
   
   In ECharts, axis type like `'log'` is abstracted as 
[Scale](https://github.com/apache/incubator-echarts/blob/master/src/scale/Scale.js).
 There are different kinds of scales:
   
   + Ordinal
   + Interval
   + Log
   + Time
   
   Ordinal scale and interval scale are the most commonly used. Ordinal is for 
category data, while the interval is for the `number` like data. 
   
   We fixed the scale to be `interval` in the radar chart. 
https://github.com/apache/incubator-echarts/blob/master/src/coord/radar/Radar.js#L43
 But as you mentioned. It's better to support `log` scale.
   
   About how to create the `scale` from the given option. 
https://github.com/apache/incubator-echarts/blob/master/src/coord/axisHelper.js#L248
 may be an example you can reference.
   
   Please let us know if you have any more questions. Looking forward to your 
fix:)
   
    

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