DrawOptions Class
Represents a class that contains settings for custom drawing series of different view types.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Related API Members
The following members return DrawOptions objects:
Remarks
Instances of the DrawOptions class are passed to the ChartControl.CustomDrawSeries and ChartControl.CustomDrawSeriesPoint events, and can be accessed via the CustomDrawSeriesEventArgs.DrawOptions property. In these event handlers, you can change specific appearance settings of a series by customizing the DrawOptions.Color property of the DrawOptions class.
Example
This example shows how to change the color of each series point according to its values.
In addition, the point labels text is changed to show the color of the current interval (Green, Yellow, or Red).
To accomplish this, it is necessary to invoke the ChartControl.CustomDrawSeriesPoint event and change its drawing options in the CorrectDrawOptions() method.
In this example, you can deactivate the “Custom Draw” option on the stack panel to return to the default appearance of series points.
<Window x:Class="CustomDrawChart.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
Title="MainWindow" Height="350" Width="525" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<StackPanel Grid.Row="0" Grid.Column="0">
<dxe:CheckEdit Name="chbCustomDraw" Content="Custom Draw" IsChecked="True"
Checked="chbCustomDraw_Checked" Unchecked="chbCustomDraw_Unchecked" />
</StackPanel>
<dxc:ChartControl Grid.Row="0" Grid.Column="1" Name="chart"
CustomDrawSeriesPoint="chart_CustomDrawSeriesPoint">
<dxc:XYDiagram2D>
<dxc:XYDiagram2D.AxisY>
<dxc:AxisY2D GridSpacing="1">
<dxc:AxisY2D.Strips>
<dxc:Strip AxisLabelText="High" MinLimit="2" MaxLimit="3"
Brush="#FFFFDBDB" BorderColor="#00BB002F" />
<dxc:Strip AxisLabelText="Middle" MinLimit="1" MaxLimit="2"
Brush="#FFFFF6BF" BorderColor="#00BB002F" />
<dxc:Strip AxisLabelText="Low" MinLimit="0" MaxLimit="1"
Brush="#FFD6F39F" BorderColor="#00BB002F" />
</dxc:AxisY2D.Strips>
<dxc:AxisY2D.Range>
<dxc:AxisRange MinValue="0" MaxValue="3" />
</dxc:AxisY2D.Range>
</dxc:AxisY2D>
</dxc:XYDiagram2D.AxisY>
<dxc:BarSideBySideSeries2D LabelsVisibility="True">
<dxc:SeriesPoint Argument="A" Value="0.3" />
<dxc:SeriesPoint Argument="B" Value="1.2" />
<dxc:SeriesPoint Argument="C" Value="1.7" />
<dxc:SeriesPoint Argument="D" Value="0.8" />
<dxc:SeriesPoint Argument="E" Value="1.9" />
<dxc:SeriesPoint Argument="F" Value="2.8" />
<dxc:SeriesPoint Argument="G" Value="1.3" />
<dxc:SeriesPoint Argument="H" Value="3" />
</dxc:BarSideBySideSeries2D>
</dxc:XYDiagram2D>
</dxc:ChartControl>
</Grid>
</Window>