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



Gets or sets the height of the chart image.

Syntax

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

Example

C#Copy Code
Chart.Height = 350; 
Visual BasicCopy Code
Chart.Height = Unit.Parse(350)

See Also