Use this property to return the absolute minimum x-value of a specific x-axis.
[Visual Basic] ReadOnly Property AbsMinXValue(XAxisNumber As Integer) As Double [C#] double XYChartNETCtl.get_AbsMinXValue(int XAxisNumber) [C++] double get_AbsMinXValue(int)
Absolute minimum is the lowest value that is displayed on the graph for the specified x-axis. The value returned is of type Double.
Note This property is read-only and should only be called after a Refresh call has been made.
XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.
[Visual Basic] Dim tmpMin As Double Dim tmpMax As Double tmpMin = XYChartNETCtl1.AbsMinXValue(1) 'Get the absolute min value for x-axis 1 tmpMax = XYChartNETCtl1.AbsMaxXValue(1) 'Get the absolute max value for x-axis 1 [C#] double tmpMin; double tmpMax; tmpMin = XYChartNETCtl1.get_AbsMinXValue(1); //Get the absolute min value for x-axis 1 tmpMax = XYChartNETCtl1.get_AbsMaxXValue(1); //Get the absolute max value for x-axis 1 [C++] double tmpMin; double tmpMax; tmpMin = XYChartNETCtl1->get_AbsMinXValue(0); //Get the absolute min value for x-axis 0 tmpMax = XYChartNETCtl1->get_AbsMaxXValue(0); //Get the absolute max value for x-axis 0