TdxCustomFlowChart.OnDrawObject Event
Enables you to custom paint a simple chart symbol shape.
Declaration
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