Home Forums Chart Support Log-log chart axis label format as 10 to exponent Reply To: Log-log chart axis label format as 10 to exponent

#45124

I was having trouble with subscriptValue producing 10^0 for 0.1 in some cases when it should be 10^-1.

subscriptValue using Math.log10(value) fixes the issue for me, instead of Math.ceil(Math.log(value)/Math.log(10))