DataPointCollection.FindMinByValue Method

Definition

Finds the data point with the minimum value.

Overloads

FindMinByValue()

Finds the data point with the minimum value.

FindMinByValue(String)

Finds the data point with the minimum value.

FindMinByValue(String, Int32)

Finds the data point with the minimum value, starting from the specified index location.

FindMinByValue()

Finds the data point with the minimum value.

public:
 System::Windows::Forms::DataVisualization::Charting::DataPoint ^ FindMinByValue();
public System.Windows.Forms.DataVisualization.Charting.DataPoint FindMinByValue ();
member this.FindMinByValue : unit -> System.Windows.Forms.DataVisualization.Charting.DataPoint
Public Function FindMinByValue () As DataPoint

Returns

The DataPoint object with the minimum value.

Applies to

FindMinByValue(String)

Finds the data point with the minimum value.

public:
 System::Windows::Forms::DataVisualization::Charting::DataPoint ^ FindMinByValue(System::String ^ useValue);
public System.Windows.Forms.DataVisualization.Charting.DataPoint FindMinByValue (string useValue);
member this.FindMinByValue : string -> System.Windows.Forms.DataVisualization.Charting.DataPoint
Public Function FindMinByValue (useValue As String) As DataPoint

Parameters

useValue
String

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

Returns

A DataPoint object with the minimum value.

Applies to

FindMinByValue(String, Int32)

Finds the data point with the minimum value, starting from the specified index location.

public:
 System::Windows::Forms::DataVisualization::Charting::DataPoint ^ FindMinByValue(System::String ^ useValue, int startIndex);
public System.Windows.Forms.DataVisualization.Charting.DataPoint FindMinByValue (string useValue, int startIndex);
member this.FindMinByValue : string * int -> System.Windows.Forms.DataVisualization.Charting.DataPoint
Public Function FindMinByValue (useValue As String, startIndex As Integer) As DataPoint

Parameters

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

The DataPoint object with the minimum value.

Applies to