echarts
echarts copied to clipboard
[Feature] Support negative and zero when axis type is 'log'
What problem does this feature solve?
it will fit more scenes.
Replace the existing with a method similar below
/**
* x > 0 y = log10(x) + 1
* x = 0 y = 0
* x < 0 y = -log10(|x|) - 1
*/
What does the proposed API look like?
No change
Maybe there are some methods that I can extend some custom scale?