Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCustomFlowChart.OnDrawObject Event

In This Article

Enables you to custom paint a simple chart symbol shape.

#Declaration

Delphi
property OnDrawObject: TdxFcDrawEvent read; write;

#Remarks

This event occurs when the control is about to paint a simple chart symbol’s shape. Handle the event to override the default paint routines.

The Sender parameter provides access to the control that raised the event. The AObject parameter refers to the chart symbol that is about to be drawn. Use the R parameter to address the chart symbol’s bounding rectangle.

Note

The OnDrawObject event never occurs if the chart symbol’s ShapeType property is set to fcsAdvanced; handle the OnDrawObjectEx event instead.

See Also