Back to Devexpress

BorderlessSimpleMarker2DModel Class

wpf-devexpress-dot-xpf-dot-charts-dot-borderlesssimplemarker2dmodel.md

latest2.5 KB
Original Source

BorderlessSimpleMarker2DModel Class

The basic marker model without a border.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public class BorderlessSimpleMarker2DModel :
    SimplePredefinedMarker2DModel
vb
Public Class BorderlessSimpleMarker2DModel
    Inherits SimplePredefinedMarker2DModel

Remarks

The following image demonstrates the BorderlessSimpleMarker2DModel assigned to the PointSeries2D.MarkerModel property:

The following markup shows how to apply the BorderlessSimpleMarker2DModel to a PointSeries2D:

xaml
<dxc:ChartControl>
    <dxc:XYDiagram2D>
        <dxc:PointSeries2D DataSource="{Binding Data}"
                           ArgumentDataMember="Argument"
                           ValueDataMember="Value">
            <dxc:PointSeries2D.MarkerModel>
                <dxc:BorderlessSimpleMarker2DModel/>
            </dxc:PointSeries2D.MarkerModel>
        </dxc:PointSeries2D>
    </dxc:XYDiagram2D>
</dxc:ChartControl>

Inheritance

Object DispatcherObject DependencyObject Freezable ChartDependencyObject DevExpress.Xpf.Charts.PointModel Marker2DModel PredefinedMarker2DModel DevExpress.Xpf.Charts.SimplePredefinedMarker2DModel BorderlessSimpleMarker2DModel

See Also

BorderlessSimpleMarker2DModel Members

DevExpress.Xpf.Charts Namespace