Back to Devexpress

TrendSegmentColorizer.RisingTrendColor Property

wpf-devexpress-dot-xpf-dot-charts-dot-trendsegmentcolorizer-51be3916.md

latest3.0 KB
Original Source

TrendSegmentColorizer.RisingTrendColor Property

Gets or sets the color used to draw the rising value segments.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public Color RisingTrendColor { get; set; }
vb
Public Property RisingTrendColor As Color

Property Value

TypeDescription
Color

The color the colorizer uses to draw the rising value segments.

|

Example

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

xaml
<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

TrendSegmentColorizer Class

TrendSegmentColorizer Members

DevExpress.Xpf.Charts Namespace