Dundas.SharePoint.Charting.WebParts Send comments on this topic.
FindValue(Double,String,Int32) Method
See Also 
Dundas.Charting.WebControl Namespace > DataPointCollection Class > FindValue Method : FindValue(Double,String,Int32) Method


valueToFind
Point value to find.
useValue
Which point value to use (X, Y1, Y2,...).
startFromIndex
Index of the point to start looking from. Returns index of found point or -1.
Find first point with Max value from specified index.

Syntax

Visual Basic (Declaration)  
Public Overloads Function FindValue( _
   ByVal valueToFind As Double, _
   ByVal useValue As String, _
   ByRef startFromIndex As Integer _
) As DataPoint
Visual Basic (Usage) Copy Code
Dim instance As DataPointCollection
Dim valueToFind As Double
Dim useValue As String
Dim startFromIndex As Integer
Dim value As DataPoint
 
value = instance.FindValue(valueToFind, useValue, startFromIndex)
C#  
public DataPoint FindValue( 
   double valueToFind,
   string useValue,
   ref int startFromIndex
)

Parameters

valueToFind
Point value to find.
useValue
Which point value to use (X, Y1, Y2,...).
startFromIndex
Index of the point to start looking from. Returns index of found point or -1.

Return Value

Found point or null.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also