Skip to main content

RangeSelectorChartAxisScaleType Enum

Lists the values that define the type of the chart axis scale.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public enum RangeSelectorChartAxisScaleType

Members

Name Description
Auto

A scale type is determined automatically according to scale values.

Logarithmic

A logarithmic scale is useful when you visualize a dataset of rapidly-growing values. Each scale tick represents a particular value (BootstrapRangeSelectorScale.LogarithmBase) that is raised to the next power in turn. For example, if you set LogarithmBase to 5, the following ticks will be generated: 5^0, 5^1, 5^2, 5^3, etc.

Continuous

Default for numeric and date-time values. The scale is divided into equal intervals automatically or you can specify custom intervals using the BootstrapRangeSelectorScale.TickInterval and BootstrapRangeSelectorScale.MinorTickInterval properties.

Related API Members

The following properties accept/return RangeSelectorChartAxisScaleType values:

Remarks

The enumeration is used by the BootstrapRangeSelectorChartValueAxis.Type property.

See Also