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.BringToFront Method

In This Article

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

#Declaration

Delphi
procedure BringToFront;

#Remarks

Call this procedure to paint the current chart symbol on top of all the others chart symbols by setting the ZOrder property value to ObjectCount minus 1.

A BringToFront procedure call has no visual effect if the chart symbol:

  • Is already in the top 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 show the current chart symbol behind all the others, call the SendToBack procedure instead.

See Also