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



Gets or sets a value which determines if gauges should be clipped (cut) to display only the active area.

Syntax

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

Example

C#Copy Code
Chart.ClipGauges = false; 
Visual BasicCopy Code
Chart.ClipGauges = false

See Also