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)
show histogram "My histogram" a1f4 { haxis { axisScale: "log" } } with T.X
// Example: histogram > vaxis
table T = extend.range(1000)
T.X = random.poisson(5 into T)
show histogram "My histogram" a1f4 { vaxis { axisScale: "log" } } with T.X