Click or drag to resize

FreeformPointLineSeriesSolveYCoordsAtXCoord Method

LightningChart .NET Help
Find all instances of FreeformPointLineSeries’ intersection with vertical line going through the given X-coordinate. The intersection point is described by segment of line (pair of LineSeries’ points) it is found. Each intersection point is returned as LineSeriesCoordinateSolveResult structure, and method returns the list of those structures.

Note that you might be interested in using SolveNearestDataPointByCoord(Int32, Int32, Double, Double, Int32) for some of the use cases.

X-coordinate in pixels or DIP.Use DIP instead of pixels as parameters.

Return Value

Type: IListLineSeriesCoordinateSolveResult
Iterable list of solve results.

Namespace:  Arction.Wpf.Charting.SeriesXY
Assembly:  Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntax
public IList<LineSeriesCoordinateSolveResult> SolveYCoordsAtXCoord(
	float x,
	bool useDIP = false
)

Parameters

x
Type: SystemSingle

[Missing <param name="x"/> documentation for "M:Arction.Wpf.Charting.SeriesXY.FreeformPointLineSeries.SolveYCoordsAtXCoord(System.Single,System.Boolean)"]

useDIP (Optional)
Type: SystemBoolean

[Missing <param name="useDIP"/> documentation for "M:Arction.Wpf.Charting.SeriesXY.FreeformPointLineSeries.SolveYCoordsAtXCoord(System.Single,System.Boolean)"]

Return Value

Type: IListLineSeriesCoordinateSolveResult

[Missing <returns> documentation for "M:Arction.Wpf.Charting.SeriesXY.FreeformPointLineSeries.SolveYCoordsAtXCoord(System.Single,System.Boolean)"]

See Also