Navigation :
StyleCode Property: axisScale
axisScale
The scale used to render data on the axis.
The “log” scale only support strictly positive data.
Examples
// Example: histogram > haxis
table T = extend.range(1000)
T.X = random.poisson(5 into T)
{ haxis { axisScale: log } }
show histogram "My histogram" a1f4 with T.X
// Example: histogram > vaxis
table T = extend.range(1000)
T.X = random.poisson(5 into T)
{ vaxis { axisScale: log } }
show histogram "My histogram" a1f4 with T.X