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


Sets a string that automatically sets the Height and Width of the chart image.

Syntax

Visual Basic (Declaration)  
Public WriteOnly Property Size 
Visual Basic (Usage) Copy Code
Dim instance As Chart
 
instance.Size = value
C#  
public void Size {set;}

Return Value

This property accepts a string formatted as "WidthXHeight".

Example

C# Copy Code
Chart.Size = "640X480";
    
Visual Basic Copy Code
Chart.Size = "640X480"

See Also