Returns the corresponding Y value of a Screen position between Axis limits.
public abstract Double YScreenToValue(Int32 screenPos)

Remarks


This function returns the numeric Value that corresponds to the specified Vertical Screen coordinate. The resulting Value is based on the Series.GetVertAxis.

Example

[C#]

//Displays the coordinates of the mouse position.

private void tChart1_MouseMove(object sender, 
System.Windows.Forms.MouseEventArgs e)
label1.Text = "(X, Y) = (" + points1.XScreenToValue(e.X)+ ", " +
points1.YScreenToValue(e.Y) + ")";

See Also

Series Class | Series Members | Steema.TeeChart.Styles Namespace