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

TdxFcObject.SendToBack Method

In This Article

Moves the chart symbol to the bottom object layer in the control‘s client area.

#Declaration

Delphi
procedure SendToBack;

#Remarks

Call this procedure to paint the current chart symbol prior to the all others by setting the ZOrder property value to 0.

Invoking the SendToBack procedure has no visual effect if the chart symbol:

  • Is already in the bottom object layer;

  • Is invisible (that is, the ShapeType property is fcsNone or the Visible property is False);

  • Has a zero size;

  • Does not intersect any other chart symbol.

To display the current chart symbol on top of all the others, call the BringToFront procedure.

See Also