ScaleBase.LogarithmBase

Syntax

LogarithmBase: Number

Description

The LogarithmBase property sets logarithm base to estimate scale intervals.

Comments

This property is relevant if the ScaleBase.Mode property is set to Logarithmic.

Example

To execute the example, repeat the operations described for the ScaleBase.constructScaleElements method and add the following code:

scale.setMode("Logarithmic");
scale.setLogarithmBase(3);
scale.constructScaleElements(data); 
legend = map.getLegends().MapLegend0;
legend.draw(); 

After executing the example the scale is calculated on the other logarithm base.

See also:

ScaleBase