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



Gets or sets the bottom margin of the chart image.

Syntax

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

Example

C#Copy Code
Chart.MarginBottom = 20; 
Visual BasicCopy Code
Chart.MarginBottom = 20

See Also