Back to Devexpress

IntervalNumericScaleOptions.OverflowValue Property

wpf-devexpress-dot-xpf-dot-charts-dot-intervalnumericscaleoptions-a50ce023.md

latest6.8 KB
Original Source

IntervalNumericScaleOptions.OverflowValue Property

Gets or sets the start value for the interval that includes overflow values.

Namespace : DevExpress.Xpf.Charts

Assembly : DevExpress.Xpf.Charts.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public double? OverflowValue { get; set; }
vb
Public Property OverflowValue As Double?

Property Value

TypeDescription
Nullable<Double>

A floating-point value that is the overflow interval’s threshold.

|

Remarks

The overflow interval is the rightmost interval and includes data points whose arguments are greater than OverflowValue.

Use the IntervalNumericScaleOptions.OverflowValuePattern property to format the overflow interval text.

Example

This example demonstrates how to create a histogram chart with bins of a given width.

The code below configures a histogram for a chart with a numeric x-axis scale.

xaml
<dxc:ChartControl x:Name="chartControl">
    <dxc:XYDiagram2D>
        <dxc:XYDiagram2D.AxisX>
            <dxc:AxisX2D TickmarksMinorVisible="False" 
                         GridLinesVisible="True">
                <dxc:AxisX2D.NumericScaleOptions>
                    <!-- Configure a histogram with the specified number of bins. -->
                    <dxc:WidthIntervalNumericScaleOptions AggregateFunction="Histogram" 
                                                          Width="10"
                                                          OverflowValue="20"
                                                          UnderflowValue="-30"
                                                          GridLayoutMode="GridAndLabelCentered"
                                                          Pattern="{}{OB}{A1:F0}; {A2:F0}{CB}"
                                                          OverflowValuePattern="{}{OS} {A1:F0}"
                                                          UnderflowValuePattern="{}{US} {A2:F0}"/>
                    <!--...-->                                                                  
                </dxc:AxisX2D.NumericScaleOptions>
                <dxc:AxisX2D.WholeRange>
                    <dxc:Range SideMarginsValue="0.8"/>
                </dxc:AxisX2D.WholeRange>
                <dxc:AxisX2D.Title>
                    <dxc:AxisTitle Content="Temperature (°C)" FontSize="14" Margin="0" Padding="0"/>
                </dxc:AxisX2D.Title>
            </dxc:AxisX2D>
        </dxc:XYDiagram2D.AxisX>
        <dxc:BarSideBySideSeries2D DisplayName="Temperature" 
                                    DataSource="{Binding}" 
                                    ArgumentDataMember="Temperature" 
                                    BarWidth="1">
        </dxc:BarSideBySideSeries2D>
    </dxc:XYDiagram2D>
</dxc:ChartControl>

The following API members configure the histogram options:

MemberDescription
WidthIntervalNumericScaleOptionsThe options that provide means to create axis intervals with a specified width.
ManualNumericScaleOptions.AggregateFunctionGets or sets the function that is used to aggregate numeric axis data when one of the AxisX2D.NumericScaleOptions, AxisX3D.NumericScaleOptions, or CircularAxisX2D.NumericScaleOptions properties is set to ManualNumericScaleOptions.
WidthIntervalNumericScaleOptions.WidthGets or sets the interval width in x-axis measurement units.
IntervalNumericScaleOptions.OverflowValueGets or sets the start value for the interval that includes overflow values.
IntervalNumericScaleOptions.UnderflowValueGets or sets the end value for the interval that includes underflow values.
IntervalNumericScaleOptions.GridLayoutModeGets or sets the value that specifies the alignment of grid lines, major tickmarks and axis labels.
IntervalNumericScaleOptions.PatternGets or sets a format string that configures text for the interval axis labels and crosshair labels.
IntervalNumericScaleOptions.OverflowValuePatternGets or sets a format string that configures text for the overflow interval axis labels and crosshair labels.
IntervalNumericScaleOptions.UnderflowValuePatternGets or sets a format string that configures text for the underflow interval axis labels and crosshair labels.

See Also

IntervalNumericScaleOptions Class

IntervalNumericScaleOptions Members

DevExpress.Xpf.Charts Namespace