public abstract Double XScreenToValue(Int32 screenPos)
Remarks
This function returns the corresponding X value of a Screen position. The Screen position must be between Axis limits.
Example
We want to calculate the Axis.Left value in the Vertical Screen coordinate of 220 pixels.
[C#]
value = tChart1.Axis.Left.CalcPosPoint(220);
We could use the Series methods XScreentoValue or YscreenToValue to obtain the samevalue information
[C#]
value = tChart1.Series.XScreenToValue(220);
See Also
Series Class | Series Members | Steema.TeeChart.Styles Namespace