AxisSmithBaseCoordToValue Method (Single, Single, Double, Double, Boolean) |
LightningChart .NET Help
Screen Coordinate to absolute RealValue,Imaginary value pair.
Namespace:
Arction.Wpf.ChartingMVVM.Axes
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic void CoordToValue(
float x,
float y,
out double real,
out double imaginary,
bool useDIP = true
)
Public Sub CoordToValue (
x As Single,
y As Single,
<OutAttribute> ByRef real As Double,
<OutAttribute> ByRef imaginary As Double,
Optional useDIP As Boolean = true
)
public:
void CoordToValue(
float x,
float y,
[OutAttribute] double% real,
[OutAttribute] double% imaginary,
bool useDIP = true
)
Parameters
- x
- Type: SystemSingle
X-coordinate in the chart area. - y
- Type: SystemSingle
Y-coordinate in the chart area. Values grow downwards. - real
- Type: SystemDouble
Value of the RealValue axis corresponding to the given coordinate pair. - imaginary
- Type: SystemDouble
Value of the Imaginary axis corresponding to the given coordinate pair. Values grow upwards. - useDIP (Optional)
- Type: SystemBoolean
Use DIP instead of pixels as parameters.
See Also