echarts icon indicating copy to clipboard operation
echarts copied to clipboard

[Feature] Support logarithm in Gauge Chart

Open kingyue737 opened this issue 1 year ago • 2 comments

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

kingyue737 avatar Aug 20 '24 11:08 kingyue737

Maybe you can pass in log processed data?

Ovilia avatar Aug 21 '24 07:08 Ovilia

Ticks of log data are not evenly distributed.

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

Expected: | 1 1 11| 1 1 11|

kingyue737 avatar Aug 21 '24 08:08 kingyue737