Skip to main content
All docs
V26.1
  • TrendSegmentColorizer.ShowInLegend Property

    Gets or sets the value that specifies whether the colorizer should provide items for the legend.

    Namespace: DevExpress.Xpf.Charts

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

    NuGet Package: DevExpress.Wpf.Charts

    Declaration

    public bool ShowInLegend { get; set; }

    Property Value

    Type Description
    Boolean

    true, if the legend should show the colorizer items; otherwise, false.

    Example

    This example demonstrates how to use the TrendSegmentColorizer to color a line series by its segments.

    Trend Segment Colorizer

    <dxc:ChartControl>
        <!--...-->
        <dxc:XYDiagram2D>
            <!--...-->
            <dxc:LineSeries2D  DisplayName="Temperature" 
                               DataSource="{Binding}" 
                               ArgumentDataMember="Date" 
                               ValueDataMember="Temperature">
                <dxc:LineSeries2D.SegmentColorizer>
                    <dxc:TrendSegmentColorizer RisingTrendColor="Firebrick" 
                                               FallingTrendColor="RoyalBlue"
                                               RisingTrendLegendText = "Temperature Rise"
                                               FallingTrendLegendText = "Temperature Decrease"
                                               ShowInLegend="True"/>
                </dxc:LineSeries2D.SegmentColorizer>
            </dxc:LineSeries2D>
        </dxc:XYDiagram2D>
    </dxc:ChartControl>
    
    See Also