
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIDrawMeshAs
enum SCIDrawMeshAs : NSUInteger {}
Enumeration constants which define how to draw a SCISurfaceMeshRenderableSeries3D
.
-
Draw the mesh as
Solid surface
only.Declaration
Objective-C
SCIDrawMeshAs_SolidMesh = 1
-
Draw the mesh as
Wireframe
only.Declaration
Objective-C
SCIDrawMeshAs_Wireframe = 2
-
Draw the mesh as
Contours
only.Declaration
Objective-C
SCIDrawMeshAs_Contours = 4
-
Draw the mesh as
Solid surface
plusWireframe
.Declaration
Objective-C
SCIDrawMeshAs_SolidWireframe = SCIDrawMeshAs_Wireframe | SCIDrawMeshAs_SolidMesh
-
Draw the mesh as
Solid surface
plusContours
.Declaration
Objective-C
SCIDrawMeshAs_SolidWithContours = SCIDrawMeshAs_SolidMesh | SCIDrawMeshAs_Contours
-
Draw the mesh as
Solid surface
plusWireframe
plusContours
Declaration
Objective-C
SCIDrawMeshAs_SolidFrameWithContours = SCIDrawMeshAs_SolidMesh | SCIDrawMeshAs_Wireframe | SCIDrawMeshAs_Contours