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;}

Example

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

See Also