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



Gets or sets the right margin of the chart image.

Syntax

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

Example

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

See Also