Skip to main content

TdxChartControl.BorderStyle Property

Specifies the Chart control’s border style.

Declaration

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