Skip to main content
All docs
V25.1
  • RangeColorizer3D.UseEqualLegendIntervals Property

    Gets or sets whether to use equal intervals in a gradient legend.

    Namespace: DevExpress.Xpf.Charts

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

    NuGet Package: DevExpress.Wpf.Charts

    Declaration

    public bool UseEqualLegendIntervals { get; set; }

    Property Value

    Type Description
    Boolean

    true if numeric marks are positioned at equal intervals; otherwise, false.

    Remarks

    The following images show a legend for different UseEqualLegendIntervals values:

    UseEqualLegendIntervals = True
    UseEqualLegendIntervals = True
    UseEqualLegendIntervals = False
    UseEqualLegendIntervals = False

    The example below configures a range colorizer for a 3D bar chart:

    <dxc:Bar3DSeriesView.Colorizer>
        <dxc:RangeColorizer3D ApproximateColors="True" 
                              UseEqualLegendIntervals="True"
                              RangeStops="2000 4000 8000 16000 32000">
            <dxc:RangeColorizer3D.Palette>
                <dxc:CustomPalette>
                    <dxc:CustomPalette.Colors>
                        <Color>#FD5915</Color>
                        <Color>#F09D25</Color>
                        <Color>#E2E232</Color>
                        <Color>#A5D648</Color>
                        <Color>#6EC95C</Color>
                    </dxc:CustomPalette.Colors>
                </dxc:CustomPalette>
            </dxc:RangeColorizer3D.Palette>
        </dxc:RangeColorizer3D>
    </dxc:Bar3DSeriesView.Colorizer>
    
    See Also