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 surfaceonly.Declaration
Objective-C
SCIDrawMeshAs_SolidMesh = 1 -
Draw the mesh as
Wireframeonly.Declaration
Objective-C
SCIDrawMeshAs_Wireframe = 2 -
Draw the mesh as
Contoursonly.Declaration
Objective-C
SCIDrawMeshAs_Contours = 4 -
Draw the mesh as
Solid surfaceplusWireframe.Declaration
Objective-C
SCIDrawMeshAs_SolidWireframe = SCIDrawMeshAs_Wireframe | SCIDrawMeshAs_SolidMesh -
Draw the mesh as
Solid surfaceplusContours.Declaration
Objective-C
SCIDrawMeshAs_SolidWithContours = SCIDrawMeshAs_SolidMesh | SCIDrawMeshAs_Contours -
Draw the mesh as
Solid surfaceplusWireframeplusContoursDeclaration
Objective-C
SCIDrawMeshAs_SolidFrameWithContours = SCIDrawMeshAs_SolidMesh | SCIDrawMeshAs_Wireframe | SCIDrawMeshAs_Contours
View on GitHub