DataPointCollection.FindMinByValue Method     
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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::Web::UI::DataVisualization::Charting::DataPoint ^ FindMinByValue();public System.Web.UI.DataVisualization.Charting.DataPoint FindMinByValue();member this.FindMinByValue : unit -> System.Web.UI.DataVisualization.Charting.DataPointPublic Function FindMinByValue () As DataPointReturns
The DataPoint object with the minimum value.
Applies to
FindMinByValue(String)
Finds the data point with the minimum value.
public:
 System::Web::UI::DataVisualization::Charting::DataPoint ^ FindMinByValue(System::String ^ useValue);public System.Web.UI.DataVisualization.Charting.DataPoint FindMinByValue(string useValue);member this.FindMinByValue : string -> System.Web.UI.DataVisualization.Charting.DataPointPublic Function FindMinByValue (useValue As String) As DataPointParameters
- 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::Web::UI::DataVisualization::Charting::DataPoint ^ FindMinByValue(System::String ^ useValue, int startIndex);public System.Web.UI.DataVisualization.Charting.DataPoint FindMinByValue(string useValue, int startIndex);member this.FindMinByValue : string * int -> System.Web.UI.DataVisualization.Charting.DataPointPublic Function FindMinByValue (useValue As String, startIndex As Integer) As DataPointParameters
- 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.