Skip to main content

Point Models

Models specify the appearance of Chart3D series points and markers.

Chart3D Bar Models

You can apply the following models to Bar3DSeriesView:

Use the Bar3DSeriesView.BarModel property to assign a model to a series view. Set the Bar3DPointModel.ShowFacets property to true to display facets.

<dxc:Series3D>
    <dxc:Series3D.View>
        <dxc:Bar3DSeriesView>
            <dxc:Bar3DSeriesView.BarModel>
                <dxc:Bar3DPyramidPointModel ShowFacets="True"/>
            </dxc:Bar3DSeriesView.BarModel>
        </dxc:Bar3DSeriesView>
    </dxc:Series3D.View>
</dxc:Series3D>

Chart3D Marker Models

You can apply the following models to Bubble3DSeriesView, Point3DSeriesView, and SurfaceSeriesView. Set the SurfaceSeriesView.MarkerVisible property to true to display markers for SurfaceSeriesView.

Use the MarkerModel property to assign a marker model to a series view. Set the Marker3DSpherePointModel.SphereDetalizationLevel property to specify the level of detail for sphere markers.

 <dxc:Bubble3DSeriesView>
    <dxc:Bubble3DSeriesView.MarkerModel>
        <dxc:Marker3DSpherePointModel SphereDetalizationLevel="High" />
    </dxc:Bubble3DSeriesView.MarkerModel>
</dxc:Bubble3DSeriesView>