DataPointCollection.FindMinByValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找具有最小值的数据点。
重载
FindMinByValue() |
查找具有最小值的数据点。 |
FindMinByValue(String) |
查找具有最小值的数据点。 |
FindMinByValue(String, Int32) |
从指定索引位置查找具有最小值的数据点。 |
FindMinByValue()
查找具有最小值的数据点。
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
返回
具有最小值的 DataPoint 对象。
适用于
FindMinByValue(String)
查找具有最小值的数据点。
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
参数
- useValue
- String
要使用的数据点值(X、Y1、Y2...)。
返回
具有最小值的 DataPoint 对象。
适用于
FindMinByValue(String, Int32)
从指定索引位置查找具有最小值的数据点。
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
参数
- useValue
- String
要使用的数据点值(X、Y1、Y2...)。
- startIndex
- Int32
将从该处开始搜索的数据点的索引位置。
返回
具有最小值的 DataPoint 对象。