wpf-devexpress-dot-xpf-dot-charts-dot-areastackedseries2d-0e6fff20.md
Gets or sets options related to empty points of the stacked area series.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public AreaEmptyPointOptions EmptyPointOptions { get; set; }
Public Property EmptyPointOptions As AreaEmptyPointOptions
| Type | Description |
|---|---|
| AreaEmptyPointOptions |
Contains settings for empty points of a stacked area series.
|
Use the EmptyPointOptions property to access the following empty point settings:
Refer to the following help topic for more information: Empty Points.
The following example shows how to customize display options for empty points of a stacked area chart.
<dxc:AreaStackedSeries2D DisplayName="Night Temperature"
ArgumentDataMember="Date"
ValueDataMember="NightTemperature"
Transparency="0.3" LabelsVisibility="True">
<dxc:AreaStackedSeries2D.EmptyPointOptions>
<dxc:AreaEmptyPointOptions ProcessPoints="Interpolate"
Brush="#50808080">
<dxc:AreaEmptyPointOptions.Border>
<dxc:SeriesBorder Brush="#808080">
<dxc:SeriesBorder.LineStyle>
<dxc:LineStyle Thickness="2">
<dxc:LineStyle.DashStyle>
<DashStyle Dashes="2 2"/>
</dxc:LineStyle.DashStyle>
</dxc:LineStyle>
</dxc:SeriesBorder.LineStyle>
</dxc:SeriesBorder>
</dxc:AreaEmptyPointOptions.Border>
</dxc:AreaEmptyPointOptions>
</dxc:AreaStackedSeries2D.EmptyPointOptions>
</dxc:AreaStackedSeries2D>
<dxc:AreaStackedSeries2D DisplayName="Day Temperature"
ArgumentDataMember="Date"
ValueDataMember="DayTemperature"
Transparency="0.3" LabelsVisibility="True">
<dxc:AreaStackedSeries2D.EmptyPointOptions>
<dxc:AreaEmptyPointOptions ProcessPoints="Interpolate"
Brush="#50808080">
<dxc:AreaEmptyPointOptions.Border>
<dxc:SeriesBorder Brush="#808080">
<dxc:SeriesBorder.LineStyle>
<dxc:LineStyle Thickness="2">
<dxc:LineStyle.DashStyle>
<DashStyle Dashes="2 2"/>
</dxc:LineStyle.DashStyle>
</dxc:LineStyle>
</dxc:SeriesBorder.LineStyle>
</dxc:SeriesBorder>
</dxc:AreaEmptyPointOptions.Border>
</dxc:AreaEmptyPointOptions>
</dxc:AreaStackedSeries2D.EmptyPointOptions>
</dxc:AreaStackedSeries2D>
See Also