aspnetbootstrap-devexpress-dot-web-dot-bootstrap-68f40e26.md
Lists the values that define the type of the chart axis scale.
Namespace : DevExpress.Web.Bootstrap
Assembly : DevExpress.Web.Bootstrap.v25.2.dll
NuGet Package : DevExpress.Web.Bootstrap
public enum RangeSelectorChartAxisScaleType
Public Enum RangeSelectorChartAxisScaleType
| 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.
|
The following properties accept/return RangeSelectorChartAxisScaleType values:
The enumeration is used by the BootstrapRangeSelectorChartValueAxis.Type property.
See Also