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.EdgeStyle Property

Specifies the border style for the rectangular chart symbol.

#Declaration

Delphi
property EdgeStyle: Word read; write;

#Property Value

Type
Word

#Remarks

Use this property together to the BorderStyle to set the inner and outer edge style of the rectangular chart symbol.

The EdgeStyle property has an effect if the chart symbol’s ShapeType property is set to the fcsRectangle.

The inner-border flags are as follows:

BDR_RAISEDINNER Raised inner edge.
BDR_SUNKENINNER Sunken inner edge.

The outer-border flags are as follows:

BDR_RAISEDOUTER Raised outer edge.
BDR_SUNKENOUTER Sunken outer edge.

Alternatively, the edge parameter can specify one of the following flags:

EDGE_BUMP Combination of BDR_RAISEDOUTER and BDR_SUNKENINNER.
EDGE_ETCHED Combination of BDR_SUNKENOUTER and BDR_RAISEDINNER.
EDGE_RAISED Combination of BDR_RAISEDOUTER and BDR_RAISEDINNER.
EDGE_SUNKEN Combination of BDR_SUNKENOUTER and BDR_SUNKENINNER.
See Also