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

TdxChartControl.BorderStyle Property

Specifies the Chart control’s border style.

#Declaration

Delphi
property BorderStyle; default cxcbsDefault;

#Property Value

Type Default Description
TcxControlBorderStyle cxcbsDefault

The active border style.

#Remarks

The Chart control can display a border whose appearance depends on the active look & feel settings. Set the BorderStyle to cxsbsNone or cxcbsDefault to disable or enable this border:

cxcbsDefault

The Chart control displays a border whose appearance changes automatically according to the active look & feel settings. Use this option if you need to switch between different skins and color schemes in your application.

VCL Chart Control: The Look & Feel-Dependent Border is Visible

cxcbsNone

The Chart control displays no look & feel-dependent border. Use this option if you need more precise control over the border appearance. You can set the Appearance.Border property to bTrue to display a different border and use the Appearance.BorderThickness and Appearance.BorderColor properties to customize the border appearance.

VCL Chart Control: No Look & Feel-Dependent Border

Note

The Chart control displays two different borders if the BorderStyle and Appearance.Border properties are set to cxcbsDefault and bTrue, respectively.

#Default Value

The BorderStyle property’s default value is cxcbsDefault.

See Also