corelibraries-devexpress-dot-xtracharts-08612620.md
Lists the values used to specify the grid mode for a chart range control client.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum ChartRangeControlClientGridMode
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum ChartRangeControlClientGridMode
| Name | Description |
|---|---|
Auto |
Identifies the auto grid mode of the chart range control client, in which the values of ChartRangeControlClientGridOptions.GridSpacing, ChartRangeControlClientGridOptions.GridOffset, and ChartRangeControlClientDateTimeGridOptions.GridAlignment properties are not specified and calculated automatically.
|
| ChartGrid |
Identifies the chart grid mode of the chart range control client, in which the ChartRangeControlClientGridOptions.GridSpacing, ChartRangeControlClientDateTimeGridOptions.GridAlignment, ChartRangeControlClientGridOptions.GridOffset properties are not specified and calculated according to the ScaleGridOptionsBase.GridSpacing and DateTimeScaleOptions.GridAlignment (NumericScaleOptions.GridAlignment), ScaleGridOptionsBase.GridOffset properties, correspondingly.
For example, in the image below, the DateTimeScaleOptions.GridAlignment property is set to Week , ScaleGridOptionsBase.GridSpacing = 1.
|
| Manual |
Identifies the manual grid mode of the chart range control client, meaning that the ChartRangeControlClientGridOptions.GridSpacing, ChartRangeControlClientGridOptions.GridOffset and ChartRangeControlClientDateTimeGridOptions.GridAlignment properties are in effect, and they should be manually defined.
For example, in the image below, the ChartRangeControlClientGridOptions.GridSpacing property is set to 4 , and ChartRangeControlClientDateTimeGridOptions.GridAlignment is set to Day.
|
The following properties accept/return ChartRangeControlClientGridMode values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | ChartRangeControlClientGridOptions.GridMode |
| WinForms Controls | ChartRangeControlClientGridOptionsModel.GridMode |
The values listed by the ChartRangeControlClientGridMode enumeration are used to set the ChartRangeControlClientGridOptions.GridMode property.
See Also