Back to Devexpress

CircularLineSeries2D.ShowIsolatedPoints Property

wpf-devexpress-dot-xpf-dot-charts-dot-circularlineseries2d-5790a9b6.md

latest2.4 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public bool ShowIsolatedPoints { get; set; }
vb
Public Property ShowIsolatedPoints As Boolean

Property Value

TypeDescription
Boolean

true , if the Chart Control shows isolated points; otherwise, false

|

Remarks

The following images demonstrate how the ShowIsolatedPoints property operates:

ShowIsolatedPoints = trueShowIsolatedPoints = false
xaml
<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

CircularLineSeries2D Class

CircularLineSeries2D Members

DevExpress.Xpf.Charts Namespace