Version

dataToPointLinearPlaneF Method

Finds the location of the given values on a linear plane.
Syntax
'Declaration
 
Public Shared Function dataToPointLinearPlaneF( _
   ByVal dataHorzMin As Double, _
   ByVal dataHorzMax As Double, _
   ByVal dataVertMin As Double, _
   ByVal dataVertMax As Double, _
   ByVal leftTop As Point, _
   ByVal bottomRight As Point, _
   ByVal d_h As Double, _
   ByVal d_v As Double _
) As PointF
public static PointF dataToPointLinearPlaneF( 
   double dataHorzMin,
   double dataHorzMax,
   double dataVertMin,
   double dataVertMax,
   Point leftTop,
   Point bottomRight,
   double d_h,
   double d_v
)

Parameters

dataHorzMin
Horizontal minimum value on the scale.
dataHorzMax
Horizontal maximum value on the scale.
dataVertMin
Vertical minimum value on the scale.
dataVertMax
Vertical maximum value on the scale.
leftTop
Top-left coordinate.
bottomRight
Bottom-right coordinate.
d_h
Horizontal data value in context.
d_v
Vertical data value in context.

Return Value

The location of the given values on a linear plane.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also