Skip to main content

BootstrapRangeSelectorChartValueAxis.Type Property

Gets or sets the chart’s axis scale type.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DefaultValue(RangeSelectorChartAxisScaleType.Auto)]
public RangeSelectorChartAxisScaleType Type { get; set; }

Property Value

Type Default Description
RangeSelectorChartAxisScaleType Auto

A RangeSelectorChartAxisScaleType enumeration value specifying the scale type.

Available values:

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.

See Also