dotnetCHARTING Send comments on this topic.
Trim(Double,Double,ElementValue) Method
See Also 
dotnetCHARTING Namespace > Series Class > Trim Method : Trim(Double,Double,ElementValue) Method


Low
Numeric minimum of the range.
High
Numeric maximum of the range.
ev
The ElementValue the range is compared to.
Trims elements out of this series based on a specified numeric range and element property.

Syntax

Visual Basic (Declaration) 
Overloads Public Sub Trim( _
   ByVal Low As Double, _
   ByVal High As Double, _
   ByVal ev As ElementValue _
) 
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim Low As Double
Dim High As Double
Dim ev As ElementValue
 
instance.Trim(Low, High, ev)
C# 
public void Trim( 
   double Low,
   double High,
   ElementValue ev
)

Parameters

Low
Numeric minimum of the range.
High
Numeric maximum of the range.
ev
The ElementValue the range is compared to.

Remarks

The ElementValue specified must be a numeric property.

See Also