StyleCode Property: axisScale

axisScale

The scale used to render data on the axis.
The “log” scale only support strictly positive data.

Applies to Type Default
histogram > haxis
histogram > vaxis
linear, log linear

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   

User Contributed Notes
0 notes + add a note