CircularLineSeries2D.ShowIsolatedPoints Property
Gets or sets the value that defines whether to show series points between empty points (whose values are undefined).
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, if the Chart Control shows isolated points; otherwise, false |
Remarks
The following images demonstrate how the ShowIsolatedPoints property operates:
ShowIsolatedPoints = true | ShowIsolatedPoints = false |
---|---|
<dxc:ChartControl>
<dxc:PolarDiagram2D>
<dxc:PolarLineScatterSeries2D ShowIsolatedPoints="True"
MarkerVisible="False">
<dxc:SeriesPoint Argument="270" Value="43"/>
<dxc:SeriesPoint Argument="245" Value="30"/>
<dxc:SeriesPoint Argument="230" Value="43"/>
<dxc:SeriesPoint Argument="215" Value="20"/>
<dxc:SeriesPoint Argument="200" Value="10"/>
<dxc:SeriesPoint Argument="180"/>
<dxc:SeriesPoint Argument="90" Value="26"/> <!-- This point is isolated. -->
<dxc:SeriesPoint Argument="60"/>
<dxc:SeriesPoint Argument="45" Value="20"/>
<dxc:SeriesPoint Argument="35" Value="20"/>
<dxc:SeriesPoint Argument="30" Value="20"/>
<dxc:SeriesPoint Argument="0" Value="16"/>
</dxc:PolarLineScatterSeries2D>
</dxc:PolarDiagram2D>
</dxc:ChartControl>
See Also