Skip to main content
A newer version of this page is available. .

BootstrapRangeSelectorScale.LogarithmBase Property

Specifies the value to be raised to a power when generating ticks for a scale of the logarithmic type.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[DefaultValue(10)]
[Range(2, 2147483647)]
public int LogarithmBase { get; set; }

Property Value

Type Default Description
Int32 10

An integer value to use as the logarithm base.

Remarks

By default, ticks on a logarithmic scale are generated on a base of 10, i.e., 0.1, 1, 10, 100, 1000 etc. But you can specify the needed base using the LogarithmBase option. For example, if you set this option to 5, the following ticks will be generated: 0.5, 5, 25, 125, 625, etc.

See Also