echarts
echarts copied to clipboard
[Feature] Support logarithm in Gauge Chart
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'
}
Maybe you can pass in log processed data?
Ticks of log data are not evenly distributed.
Current:
| 1 1 1 1 | 1 1 1 1 |
Expected:
| 1 1 11| 1 1 11|