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