Skip to main content
A newer version of this page is available. .

RadarDiagram.DiagramToPoint(Double, TimeSpan) Method

Converts a point’s diagram coordinates into screen coordinates.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

public ControlCoordinates DiagramToPoint(
    double argument,
    TimeSpan value
)

Parameters

Name Type Description
argument Double

The point’s argument.

value TimeSpan

The point’s value.

Returns

Type Description
ControlCoordinates

A ControlCoordinates object that contains information about the point’s screen coordinates, and its associated pane.

Remarks

Use the DiagramToPoint method, to convert a point’s diagram coordinates (measured in axis units) to the screen coordinates. For example, calling this method in the ChartControl.CustomPaint event handler allows you to obtain screen coordinates of series points, and draw custom graphics onto your chart across them.

Note

For the opposite conversion (of screen coordinates to diagram coordinates), use the RadarDiagram.PointToDiagram method.

With the XY-Diagram type, use the similar XYDiagram2D.PointToDiagram and XYDiagram2D.DiagramToPoint methods.

See Also