dotnetCHARTING Send comments on this topic.
Use3D Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : Use3D Property



Gets or sets a value indicating whether chart elements are rendered in 3D.

Syntax

Visual Basic (Declaration) 
Public Property Use3D As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As Boolean
 
instance.Use3D = value
 
value = instance.Use3D
C# 
public bool Use3D {get; set;}
C++/CLI 
public:
property bool Use3D {
   bool get();
   void set (bool value);
}

Example

C#Copy Code
Chart.Use3D = true; 
Visual BasicCopy Code
Chart.Use3D = true

See Also