apache / echarts

Apache ECharts is a powerful, interactive charting and data visualization library for browser
https://echarts.apache.org
Apache License 2.0
60.14k stars 19.6k forks source link

[Feature] Support logarithm in Gauge Chart #20277

Open kingyue737 opened 3 weeks ago

kingyue737 commented 3 weeks ago

What problem does this feature solve?

Sometimes, the maximum and minimum values ​​may differ by several orders of magnitude. It would be nice if the gauge chart could support logarithms。

What does the proposed API look like?

{
  type:'gauge'
  axisType: 'log'
}
Ovilia commented 3 weeks ago

Maybe you can pass in log processed data?

kingyue737 commented 3 weeks ago

Ticks of log data are not evenly distributed.

Current: | 1 1 1 1 | 1 1 1 1 |

Expected: | 1 1 11| 1 1 11|