DataPointCollection.FindAllByValue Method

Definition

Finds all the data points that are equal to the specified value.

Overloads

FindAllByValue(Double, String, Int32)

Finds all the data points that are equal to the specified value, starting from the specified index location.

FindAllByValue(Double, String)

Finds all the data points that are equal to the specified value.

FindAllByValue(Double)

Finds all the data points that are equal to the specified value.

FindAllByValue(Double, String, Int32)

Finds all the data points that are equal to the specified value, starting from the specified index location.

public:
 System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind, System::String ^ useValue, int startIndex);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind, string useValue, int startIndex);
member this.FindAllByValue : double * string * int -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double, useValue As String, startIndex As Integer) As IEnumerable(Of DataPoint)
Public Iterator Function FindAllByValue (valueToFind As Double, useValue As String, startIndex As Integer) As IEnumerable(Of DataPoint)

Parameters

valueToFind
Double

The data point value to find.

useValue
String

The data point value to use (X, Y1, Y2...).

startIndex
Int32

The index location of the data point to start searching from.

Returns

An IEnumerable<T> interface that represents the enumerator of the matching data points.

Applies to

FindAllByValue(Double, String)

Finds all the data points that are equal to the specified value.

public:
 System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind, System::String ^ useValue);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind, string useValue);
member this.FindAllByValue : double * string -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double, useValue As String) As IEnumerable(Of DataPoint)
Public Iterator Function FindAllByValue (valueToFind As Double, useValue As String) As IEnumerable(Of DataPoint)

Parameters

valueToFind
Double

The data point value to find.

useValue
String

The data point value to use (X, Y1, Y2...).

Returns

An IEnumerable<T> interface that represents the enumerator of the matching data points.

Applies to

FindAllByValue(Double)

Finds all the data points that are equal to the specified value.

public:
 System::Collections::Generic::IEnumerable<System::Windows::Forms::DataVisualization::Charting::DataPoint ^> ^ FindAllByValue(double valueToFind);
public System.Collections.Generic.IEnumerable<System.Windows.Forms.DataVisualization.Charting.DataPoint> FindAllByValue (double valueToFind);
member this.FindAllByValue : double -> seq<System.Windows.Forms.DataVisualization.Charting.DataPoint>
Public Function FindAllByValue (valueToFind As Double) As IEnumerable(Of DataPoint)

Parameters

valueToFind
Double

The data point value to find.

Returns

An IEnumerable<T> interface that represents the enumerator of the matching data points.

Applies to