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

XRChart.CustomPaint Event

Occurs after the chart has been drawn.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public event CustomPaintEventHandler CustomPaint

Event Data

The CustomPaint event's data class is CustomPaintEventArgs. The following properties provide information specific to this event:

Property Description
Bounds Gets the bounds of a custom graphic object.
Graphics Gets the custom graphic object.

Remarks

Use the CustomPaint event, to draw custom graphics over your chart.

For example, using the XYDiagram2D.DiagramToPoint and RadarDiagram.DiagramToPoint methods in the CustomPaint event handler, allows you to draw custom graphic objects tied to the existing chart elements (series, series points and so on).

The graphics drawn in the CustomPaint event handler will not affect 3D charts.

See Also