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


Low
Numeric minimum of the range.
High
Numeric maximum of the range.
ev
The ElementValue the range is compared to.
inclusive
Whether to trim elements within or outside the specified range. False by default (trims outside the range when calling the method without the inclusive parameter or when set to false.
Trims elements out of this series either within or ourside the specified numeric range and element property.

Syntax

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

Parameters

Low
Numeric minimum of the range.
High
Numeric maximum of the range.
ev
The ElementValue the range is compared to.
inclusive
Whether to trim elements within or outside the specified range. False by default (trims outside the range when calling the method without the inclusive parameter or when set to false.

Remarks

The ElementValue specified must be a numeric value property.

See Also

© 2010 All Rights Reserved.