ScaleOptions Class
In This Article
The Chart bound Range Control scale options storage.
Namespace: DevExpress.Xpf.Charts.RangeControlClient
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
public class ScaleOptions :
ChartDependencyObject
#Related API Members
The following members return ScaleOptions objects:
#Remarks
An instance of the class contains settings that specifies how to plot a chart grid and how to snap a selected range to the grid.
An example uses the following classes and members:
Symbols | Description |
---|---|
Chart |
The Chart Range Control Client that obtains data to visualize from the bound Chart Control. |
Chart |
Gets or sets the scale options that configure grid appearance. This is a dependency property. |
Scale |
The Chart bound Range Control scale options storage. |
Scale |
Gets or sets the behavior that specifies how the Chart bound Range Control Client forms its grid. This is a dependency property. |
Scale |
Gets or sets the behavior that specifies how the Chart bound Range Control Client snaps its range bounds. This is a dependency property. |
#Example
The following code demonstrates how to configure the Chart Bound Range Control Client’s behavior:
<dxe:RangeControl AllowZoom="False">
<dxcr:ChartBoundRangeControlClient Chart="{Binding ElementName=chart}" ThumbLabelFormatString="{}{0:dd MMM yyyy}">
<dxcr:ScaleOptions LabelFormat="{}{0:MMM yyyy}">
<dxcr:ScaleOptions.GridBehavior>
<dxcr:ManualGridBehavior Alignment="Month" Spacing="20"/>
</dxcr:ScaleOptions.GridBehavior>
<dxcr:ScaleOptions.SnapBehavior>
<dxcr:AutoSnapBehavior/>
</dxcr:ScaleOptions.SnapBehavior>
</dxcr:ScaleOptions>
</dxcr:ChartBoundRangeControlClient>
</dxe:RangeControl>
#Inheritance
See Also